《Git 系列》 - Ignoring File

任何语言,一些文件是不能提交的。git

Java开发的项目:*.class是不能提交的spa

C#开发的项目:*.dll,*.user,obj/,bin/是不能提交的翻译

本人查阅了官方资料,原文不能就不翻译了。code

Ignore Type

 

Ignore item(s) only in containing folder(s)orm

Only ignore the selected pattern(s) within that folder(s). 开发

Ignore item(s) recursively
Ignore items with the selected pattern(s) in that folder(s) and child folder(s). rem

Ignore File 

.gitignore in the repository root
Write the ignore entries in .gitignore in the repository root. This allows you to synchronize the ignore list with remote repository. it

.gitignore in the containing directories of the items
Write the ignore entries in .gitignore in the containing directories of the items. This allows you to synchronize the ignore list with remote repository. class

.git/info/exclude
Write the ignore entries in .git/info/exclude in repository metadata. This allows you to store the ignore list locally, but cannot synchronize with remote repository. select


如如下针对某个C#项目的.gitignore文件

/WinForm-ProgressBar/*.user
/WinForm-ProgressBar/bin/Debug
/WinForm-ProgressBar/obj/Debug
相关文章
相关标签/搜索