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.
在不同的项目中,我总是有几个我不想索引的文件,但也不想删除它们! 前任。文本文件中的想法,IDE 的帮助文件等。 它们可能包含一些机密信息,所以我真的不想将它们放在索引中。
当我创建git checkout newbranch这些文件时,这些文件不在分支中,因此它们将被删除并且我无法将它们带回来,因为我在任何其他地方都没有它们。
git checkout newbranch
我怎样才能让这些文件永远不会被删除?
将它们添加到 .gitignore
顺便说一句,这是一个链接,它解释了一切。