What is your favorite non obvious feature of svn?
|
closed as not constructive by Jeremy Banks, Bill the Lizard♦ Sep 20 '11 at 1:45
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
Having the logs outputted in xml makes them very easy to parse and analyze. |
||||
|
|
|
Added in svn 1.6: The caret Ex:
instead of
|
|||||||
|
|
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. |
||||
|
externals. The wonderful ability to pull 3rd party libraries into your code base and keep them up to date. |
|||||
|
|
|
|||||||||||||||
|
|
Getting the history of a branch from the branching point:
|
||||
|
|
|
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[1] 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) [1] The link page is now offline, but you can still see the old version on http://svn.apache.org/repos/asf/subversion/branches/1.6.x/www/links.html |
|||||
|
|
My favorite nonobvious feature of svn is how it litters all of my source directories with .svn metadata subdirectories. ;) |
|||||||
|
|
To back out a changeset from your working copy (eg. 4321):
Or multiple changesets:
|
||||
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
|
||||
|
|
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). |
||||
|
|
|
Cross-platform support for Unicode filenames I'm working in a Japanese company, so Subversion's Unicode filename support is great. I've been disappointed to see how poorly Unicode filenames are handled by git and Mercurial in comparison (particularly under Windows). (I also appreciate how well Subversion handles Unicode in log messages etc.) |
||||
|
|
|
And a second answer:
This depth support introduced in 1.5 makes Subversion so much faster than before from other tools. |
||||
|
|
|
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 !! |
||||
|
|
|
The option to configure an slave repository to mirror the main one. So a remote group can make all their reads from a local copy. It really accelerates the development. |
||||
|
|
|
When that also says "Run svn cleanup to clean"
|
||||
|
|
|
from an admin point of view, |
||||
|
|