svn

Migrate from Subversion to git, clone all branches and push through gitolite?

半城伤御伤魂 提交于 2019-12-21 09:22:31
问题 I've been working on moving our 9 projects in one SVN repo over to 9 separate git repos, managed on a server by gitolite then shutting down SVN. Seven of them were easy as they had no branches or tags so on my workstation I was able to do a simple: git svn clone --stdlayout --no-metadata -A svnauthors.txt svn+ssh://user@host/var/subversion/project tempProject Then pushed from my workstation to the gitolite sever via: git remote add origin ssh://gitolite@host/project git push -u origin master

Building a particular revision in Jenkins Pipeline

倖福魔咒の 提交于 2019-12-21 09:15:20
问题 I am using SVN as my source control repository and Jenkins as my CI tool. I run MSBuild scripts using Jenkins to do the actual builds and deploys. I also use the Jenkins Pipeline plugin to do manage the building of downstream projects. I have an issue with the pipeline. The problem is that, say I have done 10 check-ins into SVN and as a result 10 automatic CI builds have taken place, and as a result of that the pipeline shows 10 builds. Now, if I want to push build number 5 to the next stage

svn: dump format documentation?

有些话、适合烂在心里 提交于 2019-12-21 09:13:23
问题 Is the "svnadmin dump" format documented somewhere? I want to record a datastructure containing all the metadata for a svn repository, which is essentially the same stuff in the "dump" file except for the file contents itself. Seems like the svnkit library would have it, or have a way to obtain this metadata programmatically, but I've been running around the svnkit javadoc for the last hour and can't find a way to get what I need without going through more trouble than just parsing the

svn: dump format documentation?

≡放荡痞女 提交于 2019-12-21 09:12:55
问题 Is the "svnadmin dump" format documented somewhere? I want to record a datastructure containing all the metadata for a svn repository, which is essentially the same stuff in the "dump" file except for the file contents itself. Seems like the svnkit library would have it, or have a way to obtain this metadata programmatically, but I've been running around the svnkit javadoc for the last hour and can't find a way to get what I need without going through more trouble than just parsing the

Visual SVN client for Debian Linux [closed]

江枫思渺然 提交于 2019-12-21 07:57:31
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Does any one know of a good, free, visual SVN client for Linux? 回答1: KDESVN A feature-rich client with great history and revision views, annotated code views showing who changed each line of code and when it was changed, and 3D graphical views of branching and merging among trees. Written in C++ with Qt, but

Distributed version control for HUGE projects - is it feasible?

柔情痞子 提交于 2019-12-21 07:53:35
问题 We're pretty happy with SVN right now, but Joel's tutorial intrigued me. So I was wondering - would it be feasible in our situation too? The thing is - our SVN repository is HUGE. The software itself has a 15 years old legacy and has survived several different source control systems already. There are over 68,000 revisions (changesets), the source itself takes up over 100MB and I cant even begin to guess how many GB the whole repository consumes. The problem then is simple - a clone of the

Distributed version control for HUGE projects - is it feasible?

不羁岁月 提交于 2019-12-21 07:51:01
问题 We're pretty happy with SVN right now, but Joel's tutorial intrigued me. So I was wondering - would it be feasible in our situation too? The thing is - our SVN repository is HUGE. The software itself has a 15 years old legacy and has survived several different source control systems already. There are over 68,000 revisions (changesets), the source itself takes up over 100MB and I cant even begin to guess how many GB the whole repository consumes. The problem then is simple - a clone of the

Access to '/SVN/[repo name]/!svn/me' forbidden [duplicate]

我是研究僧i 提交于 2019-12-21 07:23:38
问题 This question already has answers here : SVN Commit failed, access forbidden (7 answers) Closed 2 years ago . I am having some issue with some SVN users where they get the following message Access to '/SVN/[repo name]/!svn/me' forbidden I am having some issues figuring out the root cause of it. The current setup is using Visual SVN on windows. We are using SVN security for the users, not AD. The users are that are having some issue are vendors(but not all of them), so they do have different

SVN frequently says file is locked by me in another working copy

本秂侑毒 提交于 2019-12-21 07:18:11
问题 I have an SVN repository (hosted on Dreamhost) with needs-lock set on binary files. It sometimes happen that, while committing files locked and modified by me, the commit fails with the error: Error: Commit failed (details follow): Error: File '/my/file.bin' is locked in Error: another working copy If I try to get the lock on that file (without stealing it) it says: Error: Path '/my/file.bin' is already locked by user Error: 'my_username' in filesystem '/home/user1/svn/repo1/db' Cleanup doesn

Multiple Git Branches in Multiple Eclipse Projects

心已入冬 提交于 2019-12-21 07:15:18
问题 We're in the process of converting from Subversion to Git and one thing that I'm struggling with in Git is the method of switching branches. My understanding is that at both at the command line and using EGit in Eclipse that switching to a different branch replaces the contents of the Eclipse workspace folder with that of the desired branch. This implies only one branch can be open at any one time. In SVN I could arrange my Eclipse workspace similar to: Workspace/ Project1Branch/