Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的工作文件夹是:
/Users/username/work/myapp
我通过 git 在 myapp 下管理我的源代码。
但是当我更改 ~/.vimrc 文件时。我git status在 myapp 路径下运行。它告诉我:
git status
# Untracked files: # (use "git add <file>..." to include in what will be committed) # # .vimrc
为什么?
看起来.vimrc您的主目录中的 是指向项目目录中的符号链接.vimrc。这意味着它们是同一个文件,原始文件位于项目目录中。要停止此行为,您可以删除链接,并将文件复制到您的主目录:
.vimrc
rm /Users/username/.vimrc cp /Users/username/work/myapp/.vimrc /Users/username/