vote up 17 vote down star
17

What is your favorite non obvious feature of svn?

flag

16 Answers

vote up 12 vote down check
svn log --xml

Having the logs outputted in xml makes them very easy to parse and analyze.

link|flag
vote up 15 vote down

Hook scripts (start-commit, pre-commit, post-commit) are great tools for a build system relying on SVN.

Another one which is probably too "obvious", is calling 'svn export' from a build script. It's a really nice way to deploy files to some target directory (a website for example), because you get a clean copy without .svn hidden files. It's far better than updating a remote "deployment" working copy.

link|flag
A remote working copy is faster though. – rix0rrr Dec 10 '08 at 10:58
vote up 7 vote down

Getting the history of a branch from the branching point:

svn log --stop-on-copy
link|flag
vote up 6 vote down

externals.

The wonderful ability to pull 3rd party libraries into your code base and keep them up to date.

link|flag
vote up 4 vote down

svn log -r BASE:HEAD (possibly with a v option)

Shows what's happened between your version and the head version. Usually tells you who broke the build as well.

link|flag
vote up 4 vote down

In newer versions: interactive conflict resolution. This way, conflicts don't need to be resolved manually (in most cases, it's very trivial to do this, it's just annoying if it has to be done for a large batch of files). But really, conflict handling in general (i.e. that it blocks you from committing conflicting files).

link|flag
vote up 4 vote down

The subversion api and libraries. You can use a central SVN repository even if you prefer to work with a distributed VCS - either using the "svn native" SVK or for example Mercurial (via a bridge). Good apis also mean better tools are possible - they can work with SVN directly, instead of using the commandline client and trying to parse the results.

link|flag
vote up 4 vote down

The Subversion api and the client bindings that are built on top of that.

Most SCM systems are a combination of tools that allow calling them via a commandline, but subversion is designed as a stable API to be used by multiple clients. It just provides a commandline client on top of that.

TortoiseSVN, AnkhSVN, SharpSvn, and dozens of other applications and libraries wouldn't be there without subversion being an api.

(I'm glad some of the other/new SCM implementations are starting to realize that a commandline client is not enough to be successfull)

link|flag
vote up 3 vote down

Performing a rollback by merging the former revision w/ HEAD.

link|flag
vote up 3 vote down

To back out a changeset from your working copy (eg. 4321):

svn merge -c -4321 .
svn checkin

Or multiple changesets:

svn merge -c -4321,-5432 .
link|flag
vote up 3 vote down

"svn:ignore" property

link|flag
vote up 3 vote down

svn blame of course. Got to know who's fault it is.

link|flag
vote up 1 vote down

And a second answer:

svn status --depth files <path>

This depth support introduced in 1.5 makes Subversion so much faster than before from other tools.

link|flag
vote up 1 vote down

svn diff, even when you're offline and might think diff:ing is not possible.

link|flag
The wonders of the pristine copy :) Keep in mind that without network access you can only diff from your working copy BASE revision. – Davide Gualano Nov 17 '08 at 14:54
vote up 1 vote down

My favorite nonobvious feature of svn is how it litters all of my source directories with .svn metadata subdirectories. ;)

link|flag
No kidding. git FTW. – Andrew Vit Feb 21 at 20:52
Will be fixed in svn 1.7 – wcoenen Mar 8 at 16:46
vote up 1 vote down

came across while searching for something . . here's a favorite non ovbious one from my side .. you can copy paste the "svn working copy" to any other machine or any other OS, its works as if it was checked out there. This works even if it was checked out by a different user !!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.