1

假设我在不同的位置有 6 个不同的文件,我想将它们放在一个 repo 下。

例如,我有类似的文件

~/bashrc
/etc/php.ini
/etc/apache.conf
/etc/virtualhosts.conf
/scripts/mybackup.sh

现在我想把它们放在My Scripts从一个位置调用的一个 repo 中,这样如果我使用git status然后如果这些文件被修改,那么我可以从一个位置看到这些文件。我可以使用符号链接吗?

4

1 回答 1

3

You can use symlinks. It is indeed what dotfiles managers such as homesick do. It is helpful to have a script to generate all the links automatically for you, in case you want to clone your setup to another box.

于 2013-07-08T02:48:22.907 回答