git忽略整个文件夹及移除已经提交的文件
星期五, 2017-12-08 | Author: Lee | JAVA-and-J2EE, linux | 3,532 views
一些自动编译的class文件也会提交到git上,每次都有文件去提交很影响代码回查.
如下操作使其不再提交,只要把其列入ingore中.
1.在项目的根目录(跟.git文件夹所在目录同层)建立.gitignore文件,在里面声明即可.
内容如下:
#ignore these files *.class classes/ target/ build/ |
2.如果之前文件已提交过,则需要先清除原文件(文件夹加-r即可),针对特定文件做清理如下
$ git rm *.class
$ git rm -r classes/
3.最后git add .gitignore 再git commit -m “ignore” 即可
文章作者: Lee
本文地址: https://www.pomelolee.com/1784.html
除非注明,Pomelo Lee文章均为原创,转载请以链接形式标明本文地址
No comments yet.
Leave a comment
Search
相关文章
热门文章
最新文章
文章分类
- ajax (10)
- algorithm-learn (3)
- Android (6)
- as (3)
- computer (85)
- Database (30)
- disucz (4)
- enterprise (1)
- erlang (2)
- flash (5)
- golang (3)
- html5 (18)
- ios (4)
- JAVA-and-J2EE (186)
- linux (143)
- mac (10)
- movie-music (11)
- pagemaker (36)
- php (50)
- spring-boot (2)
- Synology群晖 (2)
- Uncategorized (6)
- unity (1)
- webgame (15)
- wordpress (33)
- work-other (2)
- 低代码 (1)
- 体味生活 (40)
- 前端 (21)
- 大数据 (8)
- 游戏开发 (9)
- 爱上海 (19)
- 读书 (4)
- 软件 (3)