Random SubVersion notes.
Char | Meaning |
U | Updated your (unmodified?) copy to the latest version |
C | Conflict while updating |
M | Modified - your local version has changes that aren't in the latest version |
G | Merged - your modified version had patches applied from the latest version |
svn propset svn:executable on filename
If you change the name of a file remember to include the old name at the end of the merge, or you will get a weird error message.
svn merge new.c -r1:5 ../old/prevnew.c
svn resolved new.c
After svn delete, you must manually delete the directory afterwards, otherwise the next svn commit will fail with a weird error message.
This might be fixed in 1.1.14.
svnadmin create repo2 svnadmin dump -r 0:173 repo1 | svnadmin load repo2
This creates a new repository called repo2 and dumps revisions 0 to 173 (inclusive) from repo1 into it.
svn propdel svn:externals
svn co file:///home/my-svn-dir/name-of-my-repository .
Open the file ~/.subversion/config in your favorite text editor.
In the section [tunnels] add a line like follows (for port 222):
ssh2 = $SVN_SSH ssh -p 222
Then check out your repository using the new tunnel:
svn co svn+ssh2://my.svn.server/path/to/svn
One page links to SVNNotes: