当前位置:   article > 正文

gitignore写法_igitinore常见写法

igitinore常见写法

常用规则

# Ignoring directories
# Both the directory itself and its contents will be ignored.
bin/
gen/
  • 1
  • 2
  • 3
  • 4
# Without the trailing slash, the rule will match a file and/or
# a directory, so the following would ignore both a file named `gen`
# and a directory named `gen`, as well as any contents of that directory
bin
gen
  • 1
  • 2
  • 3
  • 4
  • 5

(1)规则:fd1/*
  说明:忽略目录 fd1 下的全部内容;注意,不管是根目录下的 /fd1/ 目录,还是某个子目录 /child/fd1/ 目录,都会被忽略;

(2)规则:/fd1/*
 说明:忽略根目录下的 /fd1/ 目录的全部内容;

更改gitignore文件后,忽略的文件仍然未被忽略:

原因为之前的文件已经处于版本控制中了,需要将该文件从版本控制缓存中删除。
小乌龟方式为,右键文件或文件夹delete (keep local)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/704969
推荐阅读
相关标签
  

闽ICP备14008679号