Tagged Questions
The svnsync tag has no wiki summary.
4
votes
2answers
480 views
Syncronize an SVN repo (svnsync) with encoding errors
Is it possible to fix/bypass non-UTF8 encoded svn:log records when syncronizing repositories with svnsync?
Background
I'm in the process of taking over the maintenance of an open source module that ...
3
votes
4answers
1k views
svnsync - couldn't get lock on destination repos
Using svnsync
$ svnsync --non-interactive sync ${REPO}
after an abort of the process there was this error message with retry
Failed to get lock on destination repos, currently held by ...
3
votes
1answer
2k views
svnsync not working : Revprop change blocked by pre-revprop-change hook
I'm trying to copy a used repository by using svnsync (I'm doing it this way in order to ensure optimal usage of my repository as long as its machine is working) but it does not seems to work.
I have ...
3
votes
4answers
211 views
What's the point of a read-only copy of your repository via svnsync?
I've been reading up on svnsync to create a read-only copy of our repository, but I don't really understand what the point of having a read-only copy of the repository is. If the master goes down for ...
3
votes
2answers
447 views
Subversion: Is there anything faster than “svnsync”?
So I have my subversion repository stored on some cloud (for example code.google.com) but due to various reasons I need to make my code non-public.
I decided I needed to download the entire ...
3
votes
1answer
655 views
how do I work around this error while copying SVN repository by svnsync?
I am copying a repository by using svnsync and am receiving this error on the same revision every time.
Transmitting file data ...svnsync: REPORT of 'https://svn1.avlux.net/xxxxxx.net': Could not ...
2
votes
2answers
292 views
Synchronize a SVN repository and later make it independent (copy a repository)
I am synchronizing an SVN repository between two systems using svnsync and I am not 100% sure if its possible to make it independent for my "new users" after the sync is finished.
What do I need to ...
2
votes
2answers
905 views
How to change svn url in svnsync?
How can I change (relocate) a subversion url that I entered when creating a mirror repository using "svnsync init" (example from #https://whatever to svn://whatever)?
tried to run svnsync init again ...
1
vote
0answers
82 views
BASH script to handle “authentication realm”
I have multiple SVN repositories which I intend to synchronize with other SVN server each night using svnsync like this:
svnsync synchronize --source-username my_server_user_name ...
1
vote
0answers
198 views
VisualSvn Server svnsync sync-lock error
I've a primary svn server on linux and i'm making a read-only synced version using VisualSvn Server.
I'm following the tutorials on
...
1
vote
1answer
119 views
svnsync, size of source repository vs sink repository not the same
I currently maintain a server that host multiple Subversion repositories. On an other server I mirror the production repositories using svnsync. There are over 100 repositories to be synched on the ...
1
vote
1answer
405 views
Problem using svnsync with svnserve and auth-access
CREATE A REPOSITORY 'repo1'
svnadmin create repo1
CHANGE DIRECTORY conf
Contents of svnserve.conf
[general]
anon-access = read
auth-access = write
password-db = passwd.txt
authz-db = authz.txt
...
1
vote
0answers
367 views
svnsync: Revision being currently copied, last merged revision, and destination HEAD are inconsistent
I run the following command:
svnsync synchronize svn://www.example.com/repos
svnsync: Revision being currently copied (19931), last merged revision (19929), and destination HEAD (19931) are ...
1
vote
1answer
198 views
How to set svnsync to continually retry if connection breaks? (unix scripting needed?)
I'm running svnsync as a background process,
nohup svnsync synchronize svn://www.example.com/repos &
But sometimes the source SVN repository / server crashes. Can I set svnsync or configure ...
1
vote
1answer
569 views
Syncing SVN to Mercurial using svnsync & hg convert — misses svn:externals?
I've created a Mercurial mirror of an SVN repository (using this tutorial: http://oreilly.com/opensource/excerpts/opensource-mercurial/migrating-to-mercurial.html). The sync works great, except I've ...
1
vote
1answer
200 views
Can/Should I run svnadmin pack on a mirrored repository
We're mirroring a 1.6 repo using svnsync. We run svnadmin pack once a week on the master repo, but I'm wondering if we can or should also run it on the mirrored repository. From what I understand of ...
1
vote
2answers
244 views
How to synch an existing SVN repository?
I recently had to reinstall subversion on my hosting account. The repository I had setup is no longer considered working copy by the new SVN install. How can I added this repository back in to svn? I ...
0
votes
0answers
18 views
svnsync error “ have you committed to the destination without using svnsync”
I have experienced following error couple of time in the svn mirror even we haven't touched the svnsync. Any solution to overcome this problem?
svnsync: Destination HEAD (1201) is not the last ...
0
votes
0answers
47 views
I want to check out from a mirror, but commit to the master without svn sw --relocate command
I want to check out from a mirror, but commit to the master without svn sw , is it possible?
With svn sw --relocate I can do this, but I want to automatically change from slave to master during ...
0
votes
0answers
86 views
svnsync non-UTF8 svn:log property
I'm using svnsync to mirror a repository and am doing the initial synchronization, when I get the following error:
Transmitting file data .svnsync: At least one property change failed; repository is ...
0
votes
0answers
68 views
svnsync in 2 independent steps - first pull from master SVN to local and then push from local to slave SVN
I want to replicate an SVN repository (master/readonly) hosted at client's end to another SVN repository hosted locally (slave).
We can connect to client's SVN over VPN only. Once connected to VPN, ...
0
votes
0answers
341 views
VisualSVN Server: svnsync - “Report of #url#: could not read response body: An existing connection was forcibly closed by the remote host”
I am using svnsync with VisualSVN Server to sync two respositories. Both are using SSL.
The main server is Windows Server 2008. The sync/destination repo is Windows 7 64bit.
I have managed to get up ...
0
votes
3answers
290 views
How to skip initial revisions in svnsync sync (to fix broken repository)
I want to sync/copy a single project out of a moderate large SVN repo using the (usual) sequence
svnadmin create %mirror%
rem make insecure dummy hook
echo rem dummy > ...
0
votes
1answer
76 views
Export only a select project from a repository with all history / revision?
I have a project in repository A and I'm setting up a new repository B.
I am currently using svnsync to synchronize two repositories in an effort to make a copy of the first and then I intend to ...
0
votes
1answer
673 views
Monitoring a nohup process in linux / redirecting standard output to a file?
# nohup svnsync synchronize svn://www.mysite.com/repos &
I'm running the above and it seems to be working fine (disk usage is increasing), but I'm not seeing any logging in nohup.out
How can I ...
0
votes
1answer
284 views
SVN Sync blocks: Could not read response body
this may be a duplicate of http://stackoverflow.com/questions/227634/how-do-i-work-around-this-error-while-copying-svn-repository-by-svnsync
I'm setting up a repository sync.
everthing works fine ...
0
votes
1answer
125 views
Should a call to SVNSYNC be blocking or not in a post-commit hook?
I've set up mirroring of my repository and it works nicely but I've had an issue recently.
The target repository was left with an unreleased lock somehow - from what I read this may be caused by an ...
0
votes
1answer
158 views
Issues mirroring and SVN repository
I am trying to mirror a repository to my local machine. From what I have read the best way to approach this is using svnsync. When I go to set up this i am getting errors back that svnadmin and ...
0
votes
1answer
162 views
Svn - get the list of all repos on a server so I can svnsync
I'm attempting to create a backup of my client's existing svn repositories, which is publicly available over http.
If possible, I'd like to be able to make new repositories automatically, from any ...
0
votes
2answers
74 views
Tool to migrate a repo with only read access?
I have a subversion repository located on our school servers from a project my friends and I worked on the past semester. We want to take the project and polish it and make it more of a portfolio item ...
0
votes
2answers
717 views
svnsync: PROPFIND request failed
I'm desperately trying to backup my google code-repo but since
I'm not too familiar with SVN, I can't get svnsync to work.
I thought that backing up your repo to another repo or dumpfile was an easy
...