Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a NetBeans file "nbproject/project.properties" that always shows up in the "Changes not staged for commit" section (when I do git status). How could I move this to the Untracked files section (without adding it to .gitignore) ? I tried this command git rm --cached but what happened is the file shows as untracked in my local repo and got removed in the remote one but what I want is to keep it in remote and untrack only in local repo.

share|improve this question
1  
Why would you not want to track the file if its in the remote repo? – yasouser Jul 22 '11 at 15:33
so the file is changed by other team member in the remote repo and i want to get their change's but i dont want to commit my change. – Jimmy Jul 22 '11 at 19:45

1 Answer

up vote 10 down vote accepted

You could update your index:

git update-index --assume-unchanged nbproject/project.properties

and make sure it never shows as "updated" in your current repo.
That means it won't ever been pushed, but it is still present in the index.
(and it can be modified at will in your local working tree).


git update-index --no-assume-unchanged 
git ls-files -v | grep '^h '
share|improve this answer
Thanks, And if you want to revert that do i do "--no-assume-unchanged" or git add ? – Jimmy Jul 25 '11 at 16:44
@Jimmy: see gitready.com/intermediate/2009/02/18/…: git update-index --no-assume-unchanged <file> – VonC Jul 25 '11 at 17:28
I tried this but when I check out a commit or do a pull, the file still gets modified. – Cam Mar 2 '12 at 20:16
Also, to see all the files marked assume-unchanged: $ git ls-files -v | grep '^h ' – Gabe Kopley Feb 25 at 18:12
@GabeKopley interesting. I have included your comment in the answer for more visibility. – VonC Feb 25 at 18:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.