码迷,mamicode.com
首页 > 其他好文 > 详细

git ignore DS_Store

时间:2015-12-14 21:22:29      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

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

git add .gitignore
git commit -m ‘.DS_Store banished!‘





1,查找后缀为.DS_Store的文件:

find . -type f -name *.DS_Store

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

ls -a

3, vim 查找

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

 

git ignore DS_Store

标签:

原文地址:http://www.cnblogs.com/xjcristal/p/5046449.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!