假设我在不同的位置有 6 个不同的文件,我想将它们放在一个 repo 下。
例如,我有类似的文件
~/bashrc
/etc/php.ini
/etc/apache.conf
/etc/virtualhosts.conf
/scripts/mybackup.sh
现在我想把它们放在My Scripts
从一个位置调用的一个 repo 中,这样如果我使用git status
然后如果这些文件被修改,那么我可以从一个位置看到这些文件。我可以使用符号链接吗?
假设我在不同的位置有 6 个不同的文件,我想将它们放在一个 repo 下。
例如,我有类似的文件
~/bashrc
/etc/php.ini
/etc/apache.conf
/etc/virtualhosts.conf
/scripts/mybackup.sh
现在我想把它们放在My Scripts
从一个位置调用的一个 repo 中,这样如果我使用git status
然后如果这些文件被修改,那么我可以从一个位置看到这些文件。我可以使用符号链接吗?
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.