赞
踩
对于后台服务器,有些时候希望git的pull和push忽略一些文件。需要创建文件:.gitignore
文件后加点,如创建.a命名时写.a.
https://github.com/github/gitignore
比如C就用C.gitignore,Java用Java.gitignore就行,然后就在项目路径下写忽略文件的相应的地址。
比如C:/a这个目录是项目目录,那么就在a这个目录下创建.gitignore文件。
如忽略文件目录为C:/a/b.txt
那么拷贝相应.gitignore后,新起一行,写成:
/b.txt
Java环境完整写法:
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/b.txt
创建.gitignore后进行如下步骤:
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。