赞
踩
问题如题,就是说在commit中出现了很多target目录中的文件。以前我是在设置中忽略掉了target,但是这会导致你idea中显示不了target目录,看不到编译后的class文件。
现在在自己搭demo的时候发现,之前应该是因为项目没有.gitignore文件,所以才会出现这些。改为使用.gitignore文件,可以在保持target目录的前提下,忽略target、.idea、.iml等文件
[1]。
在根目录加上.gitignore文件,内容如下[1]
/target/ .idea *.iml .tags .tags_sorted_by_file .pyc __pycache__ .cache .settings .classpath .project .DS_Store *.pid *Help target log.* .DS_Store log.home_IS_UNDEFINED doc/api_doc
参考文章
[1],idea提交时忽略.class、.iml文件和文件夹或目录的方法
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。