Sourcetree is ignoring my global .gitignore file so I'm trying to get it to ignore an individual file by right clicking it and selecting Ignore... The problem is that the Ignore... option is greyed out. Can anyone tell me why?
Thanks
Community moderators have prevented the ability to post new answers.
Hi Randall,
You have to stop tracking the file before you can ignore it. You can simply right click on the file and hit "Stop Tracking". If you're in Git and you've got the staging view you should be able to right click on the same file (provided it has a blue question mark icon) and click "Ignore". If you're using Mercurial you'll need to commit the removed file first and it'll then re-appear as an uncommitted change from which point you can right click on that file and click "Ignore".
Above is a screenshot of the state you need to get your file into in order to ignore it.
Hope that helps
Thank you Kieran! Worked for me!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
File jumps up to the "Staged Files" window when I" Stop Tracking".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks - very helpful. Btw - could be nice to have a feature like detecting what kind of project is that and popup (apply default ignore pattern?) for most popular tools.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Strange thing, i need to stage it first, then i can stop tracking it... What is that for weird behavior?
well still not, then it jumps back to unstagged files... what is this for shit
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same as Ronaldo, I never got the blue question mark and couldn't stop tracking a file (I wanted to ignore .gitignore to maintain a custom version in my working folder without overwriting the repo .gitignore)
I ended up fixing the issue from the console following the accepted answer @ http://stackoverflow.com/questions/20525055/how-to-ignore-existing-file-in-git-using-source-tree
Short version:
git update-index --assume-unchanged .gitignore
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That did not work for me. Stop tracking and the file moves to the other box but still no question mark icon. Cannot ignore. Also, My ignore file is ignored for the repo. Why is that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
File jumps up to the "Staged Files" window when i Stop Tracking.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What's the difference between "stop tracking" and "add to gitignore"?
-> .gitignore file will be transmitted to the git repo, and the other developers will get it with the new entries to ignore?
-> "stop tracking" will only be applied on the client-side - so no distribution to the git repo?
thank you for your feedbacks.
regards, jan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had to close and re-open the tab for a repo to make the "ignore" option appear on right click for the question mark files. Closing and re-opening SourceTree did not work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Community moderators have prevented the ability to post new answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.