当前位置:   article > 正文

git ignore DS_Store

git ignore DS_Store

Remove existing files from the repository:

find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

Add the line

.DS_Store

to the file .gitignore, which can be found at the top level of your repository (or created if it isn't there already). Then

  1. git add .gitignore
  2. git commit -m '.DS_Store banished!'1,查找后缀为.DS_Store的文件:

find . -type f -name *.DS_Store

 2, 列出所有文件,包括隐藏文件

ls -a

3, vim 查找

命令模式下,按‘/’,然后输入要查找的字符,Enter。?和/的区别是,一个向前(下)找,一个向后(上)。 

 

转载于:https://www.cnblogs.com/xjcristal/p/5046449.html

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

闽ICP备14008679号