2012-01-10 78 views
0

可能重複:
git - removing a file from source control (but not from the source)在指定的路徑從git的跟蹤刪除文件

我有一個.DS_Store文件,它是在路徑項目/應用/資產/ JavaScript的。

如何從此文件中刪除git tracking?

+0

'git rm --cached filename'。請參閱:http://stackoverflow.com/questions/1273108 – Zeta 2012-01-10 22:52:16

+0

相關:http://www.aorensoftware.com/blog/2011/12/24/death-to-ds_store/ – 2012-01-10 22:53:55

回答

4
rm .DS_Store 
git add -A 
git commit -m "getting rid of artifact." 
echo .DS_Store >> .gitignore 
git add -A 
git commit -m "ignoring artifact." 
相關問題