User Tools

Site Tools


development:vc:svn

Subversion

Commands

  • Bash alias printing modified files:
    alias s=$'svn status -q | grep -e \'^[ ]*M\' | less'
  • revert to an older revision:
    svn merge -v -r 2780:2635 .
  • Stash files:1)
    svn diff > xy.patch; svn revert -R

    and restore:

    patch -p0 < xy.patch
Notice that svn diff does not regard any externals.
1)
As GIT command git stash does.
development/vc/svn.txt · Last modified: 2024/02/14 11:05 by Ralf H.