简体   繁体   中英

How to ADD a file to svn:global-ignores?

According to answers to this question you can ignore a file in the whole project tree like this:

svn propset svn:global-ignores "ignoreThis.txt" .

The problem is, I already have files in svn:global-ignores and if I run the above command, they all get replaced by ignoreThis.txt .

So how can I add a value to the global ignores property rather than replacing it?

The property value is a just a newline terminated list of the paths you want to ignore. If the property already exists the best option, assuming you have a working copy already available, is to use svn propedit svn:global-ignores. This will open the existing property value in your EDITOR . You can then edit the list and save to set the new value. Then just commit the property change.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM