Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn:ignore Tortoise

When I add a something to the svn:ignore entry, is that stored in the repository or in my local copy?

(In Tortoise, why items addet to svn:ignore appear on my changelist?)

like image 814
DanC Avatar asked Jul 23 '10 20:07

DanC


People also ask

How do I ignore a folder in svn?

If you right click on a single unversioned file, and select the command TortoiseSVN → Add to Ignore List from the context menu, a submenu appears allowing you to select just that file, or all files with the same extension.

How do I ignore target folder in svn?

To ignore files in subversion you want to set the svn:ignore property. You can see more here http://svnbook.red-bean.com/en/1.8/svn.advanced.props.special.ignore.html about half way down. svn propset svn:ignore target . svn propedit svn:ignore .

What does red exclamation mark mean in TortoiseSVN?

As soon as you start editing a file, the status changes to modified and the icon overlay then changes to a red exclamation mark. That way you can easily see which files were changed since you last updated your working copy and need to be committed.


2 Answers

Since you are using TortoiseSVN and always want to ignore it locally only, right click on the file from your commit dialog and "Move to Changelist -> ignore-on-commit". This is just a changelist that Tortoise maintains for exactly the purpose you describe. You could also just add the item to another changelist and choose to never commit it.

like image 83
Joshua McKinnon Avatar answered Oct 12 '22 23:10

Joshua McKinnon


It is stored in the repository along with all the other properties. This also explains why they're in the changelist: because you're changing it.

like image 44
Daniel Egeberg Avatar answered Oct 13 '22 00:10

Daniel Egeberg