Questions tagged «gitignore»

.gitignore是一个文件,列出了Git不应包含在存储库中的文件,目录和/或路径模式。



22
使.gitignore忽略除少数文件以外的所有内容
我知道.gitignore文件会掩盖Git版本控制中的指定文件。我有一个项目(LaTeX),它在运行时会生成许多其他文件(.auth,.dvi,.pdf,日志等),但我不希望这些文件被跟踪。 我知道我可以(也许应该这样做)将所有这些文件放在项目的单独子文件夹中,因为这样我就可以忽略该文件夹了。 但是,是否有任何可行的方法将输出文件保留在项目树的根目录中,并使用.gitignore忽略除我正在使用Git跟踪的文件以外的所有内容?就像是 # Ignore everything * # But not these files... script.pl template.latex # etc...
1696 git  gitignore 

30
.gitignore被Git忽略
我的.gitignore文件似乎被Git忽略了- .gitignore文件是否可能损坏?Git需要哪种文件格式,语言环境或文化? 我的.gitignore: # This is a comment debug.log nbproject/ 来自的输出git status: # On branch master # Your branch is ahead of 'origin/master' by 1 commit. # # Untracked files: # (use "git add <file>..." to include in what will be committed) # # debug.log # nbproject/ nothing added to …
1508 git  gitignore 

9
如何配置git在本地忽略某些文件?
Наэтотвопросестьответына 堆栈溢出нарусском:Какигнорироватьфайлытольковлокальномрепозитории? 我可以在本地忽略文件而不污染其他所有人的全局git配置吗?我有处于git状态的垃圾邮件的未跟踪文件,但是我不想为我在本地分支机构中拥有的每个单个随机未跟踪文件提交git config更改。
1349 git  ignore  gitignore 



15
忽略git项目上的任何'bin'目录
我有这样的目录结构: .git/ .gitignore main/ ... tools/ ... ... 在main和tools以及任何其他目录中的任何级别上,都可以有一个“ bin”目录,我想忽略该目录(我也想忽略其下的所有内容)。我已经在.gitignore中尝试了每种模式,但是它们都不起作用: /**/bin/**/* /./**/bin/**/* ./**/bin/**/* **/bin/**/* */bin/**/* bin/**/* /**/bin/* #and the others with just * at the end too 谁能帮我吗?如果这样做,第一个模式(我认为应该起作用的模式)就可以正常工作: /main/**/bin/**/* 但是我不想每个顶级目录都有一个条目,也不想每次添加新目录时都必须修改.gitignore。 在Windows上使用最新的msysgit。 编辑:还有一件事,有些文件和目录的名称中有子字符串“ bin”,我不想忽略它们:)
1236 git  gitignore 







12
全局Git忽略
我想将Git设置为全局忽略某些文件。 我已将.gitignore文件添加到主目录(/Users/me/),并在其中添加了以下行: *.tmproj 但这不是没有忽略这种类型的文件,你知道我在做什么错吗?
841 git  global  gitignore 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.