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.
我想从 myfolder 和所有子文件夹.DS_Store中排除跟踪。我还想从 myfolder 中排除一个文件(但不是从它的子文件夹中)。.project
.DS_Store
.project
我应该在 .gitignore (位于我的文件夹中)中写什么?
.DS_Store # or *.DS_Store ? I mean, is the asterisk necessary? ./.project # is this syntax correct?
这应该可以解决问题:
.DS_Store /.project
当您提供 .gitignore 的路径时,它会根据 .gitignore 文件的位置应用它(如果您愿意,可以使用 chroot)。所以第二行的 / 意味着只忽略myfolder/.project文件。
myfolder/.project