@songying
2019-09-21T09:43:33.000000Z
字数 563
阅读 1154
Git
- 所有空行或者以 # 开头的行都会被 Git 忽略。
- 以使用标准的 glob 模式匹配。
- 匹配模式可以以(/)开头防止递归
- 匹配模式可以以(/)结尾指定目录。
- 要忽略指定模式以外的文件或目录,可以在模式前加上惊叹号(!)取反.
glob模式是指 shell所使用的简化了的正则表达式。
正则符 | 含义 |
---|---|
* |
匹配0个或多个任意字符 |
[abc] |
匹配任意一个字符 |
? |
只匹配一个任意字符 |
[0-9] |
匹配0-9之间的数字 |
** |
匹配任意中间目录 |
https://github.com/github/gitignore/blob/master/Python.gitignore
# no .a files
*.a
# but do track lib.a, even though you're ignoring .a files above
!lib.a
# only ignore the TODO file in the current directory, not subdir/TODO
/TODO
# ignore all files in the build/ directory
build/
# ignore doc/notes.txt, but not doc/server/arch.txt
doc/*.txt
# ignore all .pdf files in the doc/ directory
doc/**/*.pdf