How do you do a subversion action on files not on the change list?

The Subversion change list feature allows you to place a shortcut in specific files. For example, I have a list of changes called "do not commit." How can I transfer everything except files in this or any other change lists, i.e. Modified files that do not belong to the change list?

+4
source share
2 answers

I know that TortoiseSVN and AnkhSVN use what is called an ignore-on-commit change list. This does not affect the command line client, and both are Windows tools (and Visual Studio). I do not know about a program with such a list of changes on other platforms.

+1
source

This is a kind of workaround to do this, but you can write a script that tags all files that have not yet been made to your "do not commit" change list to another change list. Then make all the changes in this new change list.

0
source

All Articles