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