Custom Search
Showing posts with label Subversion. Show all posts
Showing posts with label Subversion. Show all posts

Saturday, August 31, 2013

Subversion SVN how to create a changelist

#svn cl name_of_my_changelist file-1 file-2 file-3 file-4 file-5
 
or
 
#svn changelist name_of_my_changelist file-1 file-2 file-3 file-4 file-5
 

Subversion SVN how to commit a changelist

#svn commit -m "commit message" --cl name_of_my_changelist

Subversion SVN how to take diff of changelist

#svn diff --cl name_of_my_changelist > ~/Desktop/output_file.diff

Thursday, August 22, 2013

Subversion SVN how to remove existing changelist


#svn changelist --remove --recursive --cl name_of_my_changelist .
 
* Don’t miss the . at the end of the command