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.
我的操作系统是:Linux Fedora 19
在 Linux 上,当我编辑文件时,一些文本编辑器会创建该文件的备份。并且 git 将该备份文件视为一个新文件:my_file.txt~
my_file.txt~
如何~在不创建文件的情况下使用波浪号(在文件名末尾)制作.gitignore文件的全局 gitignore?
~
.gitignore
您可以配置一个全局 gitignore 文件,该文件将影响您的所有本地存储库:
git config --global core.excludesfile ~/.gitignore_global
然后像对待每个 repo .gitignore 文件一样对待它。
有关更多选项,请参阅https://help.github.com/articles/ignoring-files。