Useful SVN commands


svn diff - since sometimes I don't commit until later that time, I use this command to see what changes I made before committing them so I would remember and know what commit message to put.

svn status -q - this helps me remember those files I have edited and have not committed yet, not listing those files that aren't in the repository.

svn commit --editor-cmd /usr/bin/vim - sometimes I'd like to have my commit messages span multiple lines, this is how i do it.

alias svnc='svn commit --editor-cmd /usr/bin/vim' - and of course I don't want to type that long parameters all the time, I made an alias like so.

svn log - when i wanna know what's going on in a file.

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
13 + 6 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.