某草草2017-05-02 09:36:20
看这里:
If the pattern ends with a slash, it is removed for the purpose of the
following description, but it would only find a match with a
In other words, foo/ will match a directory foo and paths
it, but will not match a regular file or a symbolic link
foo (this is consistent with the way how pathspec works in general in
Git)
在我看来,这两个命令没区别。都是过滤/data/cache/
目录下的所有内容
PHP中文网2017-05-02 09:36:20
.gitignore
配置文件用于配置不需要加入版本管理的文件,配置好该文件可以为我们的版本管理带来很大的便利。
以斜杠“/”开头表示目录;
以星号“*”通配多个字符;
以问号“?”通配单个字符;
以方括号“[]”包含单个字符的匹配列表;
以叹号“!”表示不忽略(跟踪)匹配到的文件或目录;
希望对你有所帮助