今天用git托管了一个java web项目,因为是web项目,所以要上传jar文件(此项目未使用maven管理),一直使用git commit and push,就是在服务器上看不到jar文件上传,eclipse环境中的jar文件依然打着问号(?)
解决方法:找到项目当中的 .gitignore(为隐藏文件),打开
*.class # Mobile Tools for Java (J2ME) .mtj.tmp/ # Package Files # *.jar *.war *.ear # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* /build
重新commit push就有了。。。。
git笔记之解决eclipse不能提交jar等文件的问题,布布扣,bubuko.com
原文:http://blog.csdn.net/enson16855/article/details/25312787