1
vote
1answer
16 views

git-svn: Unable to determine upstream SVN information from working tree history

I'm trying to sync my svn repository to git on a daily basis. After much reading, I was able to make this work by manually creating the following in my .git/config: [svn-remote "svn"] url = ...
3
votes
0answers
29 views

git-svn: Is there a good branching and merging pattern?

I'm running the git-svn client on my machine. I'd like to have a pattern similar to a standard git branching and merging pattern, wherein you have a development branch which was branched from trunk, ...
0
votes
0answers
12 views

git-svn: merging repoints branch to merge-from url

I have a git-svn project. In that project I'm checking out an existing branch with this command: git co -t develop -b local/develop I have a branch already checked out with this command: git co ...
0
votes
1answer
19 views

Configuring git-svn

I'm an svn user with a requirement to mirror my svn code to a git repository. Users of git will not have access to the svn repository, so the solution cannot rely on checking out the code directly ...
0
votes
2answers
21 views

git svn already set … wanted to set to:

I am trying to clone/fetch svn branch with git-svn: git config --add svn-remote.stable-2012-03-29.url https://some_host/branch git config --add svn-remote.stable-2012-03-29.fetch ...
0
votes
0answers
26 views

Using git-svn when you don't have permissions on the root of the repository

I'm in a situation where I have to work with an SVN repository hosted external to my organization and I'd much prefer to be using git-svn than SVN directly. I can easily git svn clone ...
0
votes
0answers
25 views

git svn, how should I init my svn repo and syncronise with my existing git repo

I have currently working git repo at url_git and new svn repo at url_svn. I want to use svn repo with git svn -plugin and I've cloned repo with: git svn clone --username user url_svn/project_svn ...
0
votes
0answers
16 views

svn files are versioned, but showing unversion

I am just curious about merging contents from my trunk to branch to keep my branch updated, however when doing that using Cornerstone tool, I notice its listing lot of files being unversioned, ...
0
votes
1answer
54 views

How git-svn or git-flow commands are executed without dash in between

When installing git-flow I realized it is just putting files in /usr/local/bin mainly git-flow which is the executable, I'm able to invoke the script git-flow by running git flow (without dash in ...
1
vote
1answer
64 views

Completely remove an empty git commit from Subversion history

So I migrated a SVN repository to GitHub. I checked out the migrated repository using SVN, and I accidentally made an empty commit (r75 in SVN history). In order to remove the empty commit, I checked ...
1
vote
0answers
12 views

Pushing revisions of a single file via git-svn

I am developing a small project in git: it is actually a single XML file plus a couple of scripts for testing purposes. I need to submit that XML file to a third party who keeps a several such XML ...
2
votes
1answer
27 views

Github: Unable to add files to commit

I am unable to add the files to the staging area. Whenever I try to do this, I get a bunch of errors. Please have a look at the following figure and kindly tell me what's the problem here and how may ...
0
votes
1answer
27 views

how we can reflect one project commits in other projects using SVN

We have Product A and 2 projects say B,C. B & C are other projects which are having complete A product functionality and added some other extra functionality which are specific to B & C. My ...
0
votes
2answers
34 views

Checkout a specific svn release in the local git repository

I would like to checkout a specific check-in just by knowing the svn release number. For example, when I clone a subversion repository to a local git using git-svn clone, I get the following message: ...
1
vote
2answers
76 views

How to clone a nonstandard svn repo to git?

I try to clone a svn repo to git, but some of the branches are in the svn root dir like follows. I've tried $ git clone svn://url/svn-root -T trunk -b branches -b branch1 -b branch2 and $ git ...
0
votes
1answer
63 views

BASH variables to SVN commit

I'm currently migrating repositories and have created some key variables to use in my Subversion commit, the most important of those are Commit message, and Date I am trying to commit with those ...
0
votes
1answer
76 views

Is it possible to add svn commits made after the svn repo was converted to git?

Last week, I converted our svn repository to git, which took about 4 days to run. Our initial plan was to run the script during the weekend and switch to git on monday, but due to the size of our ...
0
votes
1answer
55 views

Error creating a SVN repo

Ok, I've been learning GIT and SVN past few weeks. Managed to grasp what GIT can do (simply amazing) and got it set up, along with Drush for my Drupal installs to sync my multi-installations. But I ...
1
vote
1answer
81 views

extra branches created by git svn clone

Continuing from my previous question I decided to go ahead and reclone the thing : $ git svn clone --branches=Branches/Wrye\ Bash/* \ --tags=Tags/Wrye\ Bash/* \ --trunk=Programs/Wrye\ Bash/ ...
0
votes
1answer
38 views

git looses the history trail between SVN tags

My git repo is tracking an SVN repo. One of my git branch, let's call it 'latest_tag', points to the source code as it is in the latest SVN tag. When a new SVN tag is created, I want to merge the ...
3
votes
1answer
229 views

how can I remove empty directories in git-svn?

I have a specific problem I did not found solution here or anywhere else. I have svn reporitory (yes yes, bad thing to start with ;) ) and I am using git-svn to access it and work on it. Some time ...
1
vote
0answers
332 views

git svn clone of a single directory of SVN repository

I am attempting to use git svn to clone a single directory of a SVN repository into a Git repository. If I use git svn clone svn+ssh://path/to/repo/trunk/directory, I get a Git repo without branches ...
1
vote
1answer
34 views

Git-Svn safety and api usage

I can't find much on this anywhere, before diving into git-svn I was wondering how safe it is to use against an SVN repository. I have experimented a little, and had one check in which seemed to fail ...
6
votes
4answers
816 views

git svn dcommit fails because of assertion error “svn_fspath__is_canonical(child_fspath)” (cygwin)

I hope anybody can help me. When I try to push my local git branch to the svn server this will always result into this error: $ git svn dcommit Committing to http://.../Dev_Stream/01_workspace ... ...
1
vote
2answers
212 views

Git Svn clone certain revision, and continue cloning other revisions in the future

I am converting my svn repo to git. It is a very large repo and it keep failing, therefore I have to clone only part of it. I used the following command: git svn clone -r100000:HEAD ...
0
votes
2answers
24 views

merge changes with GIT and SVN

Here is my problem. I am working with an external consultant, who created some code that he keeps in a GIT repo on github. Internally I have a development server that has SVN, and I can make a copy of ...
0
votes
0answers
100 views

How to force gclient to use git-svn for svn repositories

gclient is the tool Google uses to manage sources in projects such as Chromium and libjingle. To checkout source from svn or git gclient automatically detects type of repository and runs the relevant ...
0
votes
0answers
29 views

svn merge from branch to trunk deleting files

I am trying to merge the branch to trunk in svn, but somehow it is deleting some of the files automatically, although I have checked they both are in update revision. Below is the command I am using ...
1
vote
1answer
2k views

How to install git-svn on Linux Mint 15 (Olivia)

I am required to interface with SVN at work, but prefer to run Git locally to allow me to have multiple local branches open at any given time. After making the switch from Windows 7 to Linux Mint 15 ...
0
votes
3answers
33 views

How to create a consecutive list of git diffs between two branches in svn format?

I have a git repository (actually a git-svn repository), I created a new branch and made several commits. on the local branch. Now I would like to get diff between all commits made on the branch. Lets ...
0
votes
2answers
87 views

How can I checkout a specific revision of my svn codebase using git svn

I am trying to checkout a specific revsion of my svn codebase. Normally, to checkout, I just type git svn clone svn+ssh://path_to_codebase. I need to checkout an older version of the codebase. How do ...
8
votes
1answer
196 views

Git: git svn rebase failed. RA layer request failed

I did a git svn rebase and I got this: r58087 = a2530aabd7ce119d35f63954e075b1c86067809d (refs/remotes/git-svn) RA layer request failed: REPORT request failed on '/svn/path/to/repo': REPORT of ...
2
votes
2answers
261 views

git svn specify branches and tags on a non standard svn repository layout

The layout is : Branches\ Project1/ Branch11/ ... Branch1N/ Project2/ Branch21/ ProjectX/ # not anywhere else Excluded1\ Excluded2\ Excluded3\ Excluded4\ ...
0
votes
1answer
41 views

How to repair git-svn history when the commit message of a svn commit changes?

I use git-svn to connect to a subversion server. It seems to be possible to change the subversion commit message (of an old commit). See the accepted answers here or here. However git svn rebase does ...
1
vote
2answers
76 views

git-svn cloning a repo that lives in git but fetches from svn

I am a bit lost on what is the correct workflow for the following scenario. I'm using an open source project that's hosted on google code in a subversion repo. I prefer to use git so I've used git-svn ...
1
vote
1answer
53 views

How Can I Do GIT SVN Correctly?

In a work environment, our version control is Subversion, and that's unlikely to change. I wanted to use GIT locally, mostly for the advantage local repositories brings. Context. Base URL: ...
1
vote
1answer
195 views

In Jenkins, what does the “Publish to Subversion repository” in Add post-build action dropdown do?

I am new to Jenkins. I have a project in GIT. and I have configured it in Jenkins. The same project also exists in a svn repo. I want to know... In Jenkins, what does the "Publish to Subversion ...
0
votes
1answer
264 views

git-svn clone dying with signal 6

So I have been cloning a bunch of projects in my repository in order to migrate over to Git. I have been able to successfully clone all of them except for one. It happens to be the largest project, ...
0
votes
0answers
141 views

Ability of Jenkins to checkin in SVN repository

I am new to Jenkins, so please do forgive me if the question is stupid. I have a project in GIT. and I have configured it in Jenkins. The same project also exists in a svn repo. Now, whenever there ...
0
votes
1answer
51 views

git svn shows not correct merge graph

I use git svn bridge and have created some branches that I merged back into master, the problem is if a co-worker fetches the same repo with git-svn, the merge is not shown in his log. git ...
1
vote
0answers
50 views

Git Svn - Workflow for a Readonly SVN repos

Basically, we have a situation where we are working with client teams across the globe. Now, one of the clients have provided us with read-only access to their svn server, where their developers ...
2
votes
2answers
40 views

line endings in files which are checked out by svn and commited by git-svn

The team is using subversion as a version control system. I love git. So I cloned it with git-svn. autocrlf setting: $ git config core.autocrlf true So files changed by me will have LF as line ...
2
votes
1answer
66 views

SVN -> Git migration with structure variations

I, currently, have the following SVN structure: project1 branches trunk tags project2 branches trunk tags muchMoreStuff branches trunk tags which originally had this structure: project ...
1
vote
1answer
319 views

SubGit: How to exclude branches?

I'm testing SubGit as a way of migrating from SVN to Git. What I would like to do is be able to create remote branches in the git repository that all users can use that does not sync back to SVN. I ...
1
vote
1answer
275 views

Keep svn repository in sync with git one

my team mate and I are struggling to get our svn repository in sync with our git one. We are working on a project and we are requested to share our code on an svn repository (hosted by the ...
0
votes
1answer
168 views

SVN: how can I merge changes to a local repository to a master repository, preserving history?

For reasons to long to describe here, I created a local SVN repository, copied the contents of a remote repository, and make a total of 60 commits to it. In the mean time, the remote repository hasn't ...
0
votes
0answers
352 views

git-svn dcommit fail for “URL access forbidden for unknown reason”

When I type git svn dcommit, I got this Committing to https://some.server.com/proj1/v3 ... URL access forbidden for unknown reason: access to '/proj1/!svn/bc/579/v3/path/to/a.php' forbidden at ...
0
votes
1answer
72 views

Modified files after git svn fetch. What does it mean and how to fix that

We're going to use git instead of SVN and doing some research at the moment. I've tried to create git repository based on our SVN one. git svn is perfect. But after clone/fetch I've seen modified ...
2
votes
1answer
225 views

Does SmartGit support git-svn?

If SmartGit even supports git-svn, how would I go about using it? Would I clone my svn repository first then somehow link it to my git repository or vise versa? I found git-svn mentioned very briefly ...
2
votes
0answers
283 views

SVN commit txn-current-lock on Mountain Lion

I have facing SVN problem in Mac OS X .. When i am commit any file below are the error are generate. svn: Commit failed (details follow): svn: Can't get exclusive lock on file ...

15 30 50 per page