Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to only commit files in the unnamed changelist with SVN?

I am using the command line SVN client (for speed reasons) and have a changelist of files that I wish to ignore on each commit (much like TortoiseSVN does). Is there a way to commit all files except a specific changelist or maybe just commit all files not in a changelist?

Thanks

like image 514
Ryall Avatar asked Sep 06 '10 11:09

Ryall


People also ask

How do I commit all files in svn?

svn add --force . will add all the files and directories below your current working directory that aren't added yet (and aren't ignored) to your working copy. A svn ci -m "" will then handle the commit. The only way without 'svn add' would be to use 'svn import', but this assumes a new location.

What is Changelist svn?

Description. Used for dividing files in a working copy into a changelist (logical named grouping) in order to allow users to easily work on multiple file collections within a single working copy.

What does svn commit mean?

The svn commit command sends changes from your working copy to the respository. A log message (even if empty) must be provided. The message can be given on the command line, from a file, or an editor may be launched as the commit proceeds.


1 Answers

No. The changelist is intended for the other way around. Just commit files which are contained in the changelist and not exclude them from committing. If you'd like to ignore certain files, you should put them into the svn:ignore property, but only if they are not under version control.

like image 160
khmarbaise Avatar answered Sep 18 '22 13:09

khmarbaise