Questions tagged [svnadmin]

svnadmin is the administrative tool for monitoring and repairing your Subversion repository.

The svnadmin program is the Subversion repository administrator's best friend. Besides providing the ability to create Subversion repositories, this program allows you to perform several maintenance and repair operations on those repositories.

Reference:

172 questions
0
votes
1 answer

SVN: is it possible to delete a branch that was copied removed etc for good?

I have to remove a branch from svn history for good. Normally I would use svnadmin dump /path/to/repo |svndumpfilter --drop-empty-revs --renumber-revs exclude /branches/bad_branch However this branch was not just created, but also moved and then…
dimus
  • 6,970
  • 10
  • 38
  • 49
0
votes
3 answers

moving repository to another subdirectory in svn

I will start by saying svndumpfilter failed (using this solution: Moving SVN repositories data with history as subfolders into another repository) I got the error: At line:1 char:30 + svndumpfilter include \trunk < E:\tmp\test1.dump >…
Clonimus
  • 5
  • 8
0
votes
1 answer

Copy SVN repository into subfolder of another server's repository, with history

SVN repo 1: https://local.server.001/svn/repo1 SVN repo 2: https://local.server.002/svn/repo2 We want to move repo1 (from server 001) into a subfolder of repo2, called (for example) 'repo1'. This is to say, repo1 will be copied into this…
Matthew Housser
  • 1,002
  • 9
  • 21
0
votes
1 answer

svnadumpfilter only the lasts 10 revision

I have a svn repository that I backup with svnadmin dump myrepo | gzip -9 > myrepo-$(date +"%Y-%m-%d-%T").dump.gz hourly (I'm a little crazy). There is a way for dump the last only 10 or 20 revision of the svn? Thanks
0
votes
1 answer

vbscript calling svnadmin dump

Running the following vbscript to call svnadmin dump fails (i.e. no dump is being created) Set objShell = CreateObject("WScript.Shell") Set objShellExec = objShell.Exec("svnadmin dump C:\svn_repos > C:\fullbackup") I discovered from another post,…
Dexton
  • 3
  • 3
0
votes
1 answer

Error while restoring svn repository backup

I am using Subversion (SVN) on ubuntu machine and now want to move subversion to windows machine so I did the following steps Copy svn repository by using following command svnadmin dump /path/to/reponame > /path/to/reponame.bak Installed SVN on…
0
votes
1 answer

How to upgrade subversion(svn) version 1.6.11 to version 1.8.5 on centos?

Hj, all I'm use svn version 1.6.11 and i'm want to planning upgrade to version 1.8.5? I'm run svn on centos 6.4, 64bit. Everyone help me planning upgrade svn? And help will be greate, thanks a lot.
Dominic
  • 5
  • 1
  • 5
0
votes
1 answer

svnadmin dump repopath/* > dumpfile not including all repositories and all revisions

I have Subversion installed on Linux (Slackware), and repositories (projects) are in the following path repopath. All individual projects have their own directories (conf, db, hooks, locks). Using the command svnadmin dump repopath/* > svndump.dmp…
Ziaullah
  • 71
  • 1
  • 1
0
votes
1 answer

Revisions of svn dump

I have a dump file dump.svn This dump file includes the revision 0 to 2879 When i load it svnadmin load /path/to/new/repository < /path/to/dump.svn I have a corrupted revision (1174) , so loading it failed . How to load only the revisions 1175 to…
Nadir SOUALEM
  • 3,279
  • 2
  • 21
  • 30
0
votes
1 answer

How to migrate svn to another repository without svndump

I need to migrate from one SVN server to different SVN server. Problem in my case is I do not have shell access to the current server. I do not have svnadmin user either. I have some web based panel where I can make repo's and users. I can not just…
Nick
  • 8,479
  • 2
  • 36
  • 64
0
votes
1 answer

Import an existing SVN repository to an SVN server

I want to use a repository I already have in my PC on C:\myLameRepo (which I access using file:///c:/myLameRepo/LameProj/trunk/) to a remote server on where I plan to configure using svn or http, but I want to preserve the "whole history" of the…
ulitosCoder
  • 1,733
  • 15
  • 19
0
votes
1 answer

svnrdump hits a svn precommit hook - how can I resolve

My company is merging a number of svn repositories. With svn 1.7 we're using "svnrdump dump --incremental --revision START:STOP SOURCE_URL > patch.dump" to download the contents of the old repository. And "svnrdump load NEW_URL < patch.dump" to…
Shane Gannon
  • 4,336
  • 5
  • 32
  • 47
0
votes
1 answer

SVN tree conflict issue

I am getting the tree conflict message as mentioned below - 514 (dev) dev:/export/home/user> svn status M . ! C ABC_NY > local delete, incoming edit upon merge Summary of conflicts: Tree conflicts: 1 What I did: Created a…
Shweta Chandrakar
  • 353
  • 2
  • 3
  • 12
0
votes
1 answer

How to copy between Subversion repositories preserving properties but not preserving history

How can I copy a folder from one existing Subversion repository to another without preserving history, and in such a way that preserves relevant svn properties (e.g. preserve svn:ignore, svn:eol-style but ignore svn:mergeinfo). To use svn export…
pauldoo
  • 16,381
  • 20
  • 85
  • 112
0
votes
1 answer

SVN how to resolve an out of order repository

We have about 5 different SVN repositories running on SVN 1.6.11 on top of CentOS Linux 6.3. I was asked to migrate our SVN server to a new server last week. We have a cron job that does a Full backup of each repo once a week, and every other night…
GL2014
  • 4,646
  • 2
  • 13
  • 20
1 2 3
11
12