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.
...
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 ...
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...
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...
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.
...
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...
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...
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...
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 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...
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...
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...
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.
...
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
...
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...
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?
...
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
...
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.
...
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...
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
...