Gangmax Blog

.gitignore

  1. 要屏蔽当前目录下的某种后缀名的文件,可以这么写:
1
2
*~
*.swp
  1. 以上写法是在当前目录中递归生效的。如果只想对当前目录生效而对子目录不生效,可以这么写:
1
2
3
4
/*~
/*.swp
/foo/
/bar.txt

参考了这里这里

Comments