1

Possible Duplicate:
git - removing a file from source control (but not from the source)

I have a .DS_Store file that is in the path project/app/assets/javascripts.

How do I remove from this file git tracking?

2

1 Answer 1

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." 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.