This topic created in 4465 days ago, the information mentioned may be changed or developed.
用git建设了一个办公文档管理,但是里边梅总文件(doc、xls、ai、psd等)都有一个多余的.开头的文件,如何在git提交时忽略这些文件呃?
2 replies • 2014-05-21 19:28:46 +08:00
 |
|
1
kenzi May 21, 2014
加进 .gitignore
|
 |
|
2
tolbkni May 21, 2014
如果是希望全局忽略,即所有项目,下面这样
$> cat ~/.gitignore_global *~ .DS_Store
|