在项目中有的文件不想保存到版本库,因此需要创建一个.gitignore文件,然后里面填上要忽略文件的名字
但是在手动添加.gitignore并添加要忽略的文件后,并没有生效,可能是这个文件已经纳入版本管理中,因此需要先把本地的缓存删除,然后再提交就生效了:
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
git常见匹配示例
bin/: 忽略当前路径下的bin文件夹,该文件夹下的所有内容都会被忽略,不忽略 bin 文件
/bin: 忽略根目录下的bin文件
/*.c: 忽略 cat.c,不忽略 build/cat.c
debug/*.obj: 忽略 debug/io.obj,不忽略 debug/common/io.obj 和 tools/debug/io.obj
**/foo: 忽略/foo, a/foo, a/b/foo等
a/**/b: 忽略a/b, a/x/b, a/x/y/b等
!/bin/run.sh: 不忽略 bin 目录下的 run.sh 文件
*.log: 忽略所有 .log 文件
config.php: 忽略当前路径的 config.php 文件