svn

Mass verify svn repositories

Hi I'm wondering if there is a tool (can be commercial) to mass verify svn repositories. I know about using svnadmin but there are about 100 repositories and it's tedious to check whether if there's actually a corruption. I'm looking for something that can run in the background periodically and alert if there is a corruption. ...

How to work around inter-repository single file externals not supported by SVN 1.6?

I'm using SVN externals to include a couple of directories from another repository but I also need to set up externals for two individual files in the root of the project directory. According to the documentation this is not yet possible: The URL for a file external must be in the same repository as the URL that the file external ...

Subversion svn:externals - What's wrong here?

I first want to say I've read the Subversion manual. I've read this question. I've also read this question. Here's my dilemma. Let's say I have 3 repositories laid out like this: DataAccessObject/ branches/ tags/ trunk/ DataAccessObject/ DataAccessObjectTests/ PlanObject/ branches/ tags/ trunk/ PlanObject/ PlanObjectTests/ Win...

Using markdown in subversion commit messages - any thoughts?

I like to use markdown notation in my subversion commit messages, planning to one day create a "log" function that will output the commit messages in a HTML page, not unlike Trac's "history" view. (If Trac doesn't have a markdown plugin by then for exactly that purpose.) Can anybody think of any reasons against this? The only thing sp...

svn history via command line

I am trying to write a utility in python to get me all the files that have been modified for a specific branch....i don't care about the date or who commited. how would I go about doing this? I can handle the python part, I just can't find a command in svn to give me the output. ...

Starteam to X migration? (where X is one of: svn/git/hg/bzr ...)

Is there a tool that can migrate Starteam to svn or git or any other modern/decent source control system? I'm thinking of something along the lines of how git-svn works; allowing you to use git to pull from an svn repository. Something that can import a StarTeam repository and convert it to an svn repository, but also keep pulling from...

dlsym Version Error When Building SVN on Solaris 10 5.10

I am trying to build Subversion 1.6.9 in Solaris 10: uname -a: SunOS drccd 5.10 Generic_141414-10 sun4u sparc SUNW,Sun-Fire-V890 Solaris To build it I run the following: export CC="gcc -I/home/susher/openssl-0.9.8l/ssl_install/include -L/home/susher/openssl-0.9.8l/ssl_install/lib" export CFLAGS="-O2 -g -I/home/s...

Svnadmin load from dumpfile causes "file not found error". Help?

Given: Repository_1 - source Repository_2 - destination I created a dump file of Repository_1/Folder1 using combination of svnadmin and svndumpfilter When loading from the dump file from Repository_1/Folder1 into Repository_2/Trunk everything is fine BUT When loading from Repository_1/Folder1/Sub-folder(created another d...

Please explain Subversion to me

Every site and video I have seen introduces at least 5 new concepts in each sentence (i.e. http://www.youtube.com/watch?v=WjddHpBi8Go). It's like all these articles are in a whole 'nother language. Can some one please explain this Subversion thing in plain English please including how to go about implementing it? ...

Why does a graph take so much longer than a log?

Why does doing a "Revision Graph" take so much longer than doing a "Show Log"? The Revision Graph starts at the head and counts down to Revision 1. I'm up to over 1000 revisions and it takes about 1 minute to count down. The Show Log is almost instant and only shows the revisions that this project has. There are only about 10 revisio...

Liquibase with SVN - PHP/MySQL projects in Eclipse

Hello ! Today I found LiquiBase project and I think it is very interesting. I would like to use it but I am looking for best way to do it. We are working with PHP projects and SVN (a few developers) with one MySQL server. I am wondering how to work with LiquiBase: should we store its changeLog in SVN too ? how to edit this changeLog...

Subversion merge: Always replace file with new revision

Hi, when doing a merge, is there any subversion property that I can set to always replace the file with the newer ervision (instead of doing a diff and raise a conflict when it can't merge)? The set of files I am referring to is the c# project files (*.csproj). These files always raise a conflict. I would like to have these files alway...

Auto-Back Up of Subversion Repository

How do I backup my Subversion Repository nightly? I have a network drive I'd like to dump the repository to on a nightly basis. ...

Recommended Mercurial repository/folder structure for an SVN user

I am experimenting with Hg with a view to moving away from SVN but wanted some opinions on how I should structure my Hg repository. I come from a SVN background (which may of tainted my outlook on how this should work!) and my repository currently looks something like this: Project1 trunk branches 1.0 1.1 Project2 trunk ...

Can you 'checkout' from SVN without getting all the .svn stuff?

Maybe there is a proper term for this, but what if you want to simply download a specific revision of a file/directory to disk and never want to commit any changes - say as part of a build/release process - and you don't want the SVN meta information. Is there an easy command for this? Is this what export does? Or is that for dealing wi...

how to list new add file after update in SVN?

svn diff -r version_1:version_2 in SVN, we can diff log, like above,but it show a lot of change,too detail for me . what I need just to diff the version_1 and version_2, who's the new add file. is someone know? ...

finding the name of last changed/added file into svn

I usually check in a file at a particular location in my svn repo. what svn command i can use to find the last checked in file? I always check in only one file ...

Have svn console in focus when performing an svn operation in eclipse

Is there a way to have the console focus on the SVN output when doing an SVN operation (such as update or commit)? It's annoying to have to manually switch to that console. ...

Previewing PHP files within Subversion?

So after our codebase had become unmanageable, we finally decided to set up subversion for a web project I work on with a few friends. We've successfully set up a trunk and branches for each developer. We're working with PHP. What I'm wondering is, is if there's any way to actually view a PHP file's output from within Subversion so th...

git svn clone except a particular folder

I want to git clone an svn repository except for one folder in the root folder of svn. How do I do it? I could do git svn clone svnrepo/dir/sb-dir/ if I needed only sb-dir but I need all folders (and files) within the dir except the design folder ...