我是Github的新手,我决定使用Notepad ++作为Git Bash的编辑而不是Vim。 所以我跟着这篇文章 How do I use Notepad++ (or other) with msysgit?并在Git Bash中运行它
git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"
然后当我运行git commit
时,Notepad ++将按预期打开。关闭Notepad ++并运行git status
后,它说以下文件未跟踪:
noPlugin
nosession
notabbar
notcommited.txt
所以问题是:我是否应该将这些文件添加到git中以进行跟踪? 谢谢!
答案 0 :(得分:1)
考虑将要保留但未跟踪的文件添加到.gitignore
文件中。