Tagged Questions

135
votes
12answers
36k views

How to migrate SVN with history to a new Git repository?

I read git manual, FAQ, Git - SVN crash course, etc. and they all explain this and that, but nowhere can you find a simple instruction like: SVN repository in: svn://myserver/path/to/svn/repos Git ...
95
votes
12answers
44k views

Why is Git telling me “Your branch is ahead of 'origin/master' by 11 commits.” and how do I get it to stop?

I'm a Git newbie. I recently moved a Rails project from Subversion to Git. I followed the tutorial here: ...
80
votes
2answers
22k views

How to git-svn clone the last n revisions from a Subversion repository?

Problem How do you create a shallow copy with git-svn from a Subversion repository, i.e. how do you pull only the last three revisions? The git clone command can get the last n revisions from a Git ...
72
votes
7answers
12k views

Pushing an existing git repository to SVN

I've been doing all my work in Git and pushing to GitHub. I've been very happy with both the software and the site and I have no wish to change my working practices at this point. My PhD adviser is ...
68
votes
3answers
14k views

git-svn: how do I create a new svn branch via git?

I have a git repository which tracks an svn repository. I cloned it using --stdlayout. I created a new local branch via git checkout -b foobar Now I want this branch to end up in …/branches/foobar ...
66
votes
7answers
14k views

Is git-svn dcommit after merging in git dangerous?

My motivation for trying out git-svn is the effortless merging and branching. Then I noticed that man git-svn(1) says: "Running git-merge or git-pull is NOT recommended on a branch you plan to ...
58
votes
5answers
8k views

Is it possible to have a subversion repository as a git submodule?

Is there a way to add a subversion repository as a git submodule in my git repository? Something like: git-svn submodule add https://svn.foo.com/svn/proj --stdlayout svn-project Where ...
48
votes
4answers
6k views

Git serve: I would like it that simple

I want to know how to simply publish over http = much like Mercurial's hg serve! On the Windows/work box do this: git serve and then on the Linux box SIMPLY go: git clone http://project project ...
32
votes
6answers
10k views

Is it possible for git-merge to ignore line-ending differences?

Is it possible for git merge to ignore line-ending differences? Maybe I'm asking the wrong question ... but: I tried uisng config.crlf input but things got a bit messy and out of control, specially ...
30
votes
3answers
6k views

Ignore modified (but not committed) files in git?

Can i tell git to ignore files that are modified (deleted) but should not be committed? The situation is that i have a subdir in the repo which contains stuff I'm not interested in at all, so I ...
30
votes
3answers
4k views

Retroactively Correct Authors with Git SVN?

I have a repository which I have already cloned from SVN. I've been doing some work in this repository in its Git form and I would hate to lose that structure by cloning again. However, when I ...
25
votes
4answers
5k views

git-svn: what's the equivalent to `svn switch --relocate`?

An svn repository I'm mirroring through git-svn has changed URL. In vanilla svn you'd just do svn switch --relocate old_url_base new_url_base. How can I do this using git-svn? Simply changing the ...
23
votes
4answers
12k views

How do I make git-svn use a particular svn branch as the remote repository?

A word of warning: I'm a n00b to git in general. My team uses feature branches in svn, and I'd like to use git-svn to track my work on a particular feature branch. I've been (roughly) following Andy ...
20
votes
2answers
2k views

Delete a svn-Branch via git?

I'am using git as scm of choice but have to use a svn-repo. I can create a svn-remote-branch like this: git svn branch the_branch But how can i delete the remote branch?
19
votes
3answers
6k views

How to bridge git to ClearCase?

I've recently used git svn and enjoyed it very much. Now I'm starting a new project at a different customer. At that site the SCM of choice is ClearCase. I haven't found a baked equivalent of git svn ...
18
votes
3answers
7k views

Is it possible to make git svn dcommit result in a single svn commit?

According to the manual, git dcommit “will create a revision in SVN for each commit in git.” But is there a way to avoid multiple Subversion revisions? That is, to have git merge all changes prior to ...
17
votes
3answers
2k views

Can git-svn correctly populate svn:mergeinfo properties?

I am evaluating git-svn and trying to determine how well it will play with a particular svn repository. I am mostly concerned with getting git-svn to perform merges in such a way that the ...
16
votes
2answers
2k views

Git-svn and Eclipse?

Is there a plugin for Eclipse for git-svn? I'm looking for a way to handle the SVN repo with Git (for fast branch switching etc.)
16
votes
4answers
4k views

Cloning a Non-Standard Svn Repository with Git-Svn

I'm relatively new to Git, but I've found it so easy to work with at home that I'd like to use it at work where our projects are stored in Svn repositories. Unfortunately, the repositories are ...
15
votes
6answers
2k views

Can different git-svn clones of the same svn repository expect to be able to share changes then git svn dcommit?

I've read a great deal of "go from svn to git" and other "git-svn workflow" articles on the web, and still I think they often deal with overly simple situations. They are often targeted at guys who ...
15
votes
2answers
4k views

Git svn clone: How to defer fetch of revision history

I often have the case that I want to work on a SVN repository right away. But an ordinary git svn clone [url] also clones the entire history. So I want to speed things up. The first part is to fetch ...
15
votes
2answers
8k views

Using git-svn: Pull, Merge or Rebase?

I've been fighting the git/git-svn learning curve and last night, as part of that learning curve, I did something very, very bad. I've since gotten it corrected, but I'm hoping to understand the error ...
14
votes
1answer
2k views

Git-svn: create & push a new branch/tag?

After cloning an SVN repository using git-svn with the -s option (git svn clone http://server/repo -s), how does one create a branch or tag and have pushed to the relevant branch/tag directory in the ...
14
votes
3answers
4k views

git svn workflow - feature branches and merge

I am using git-svn with the following workflow now git clone <SVN TRUNK URL> #done once subsequently when I work on a feature git branch featureZ git checkout featureZ #make edits for ...
13
votes
4answers
749 views

Migration from Subversion to Git in a company setting?

Is there anyone out there whose company has migrated from a medium to large Subversion repository to Git? If so: What were the pitfalls you had to overcome? How easy was it for your developers to ...
13
votes
5answers
4k views

git selective revert local changes from a file

In my git repo which is tracking a svn repo I have made a number of edits to a single file. Now I want to revert those changes(like svn revert), but only portions of the file. I want to be able to ...
13
votes
6answers
7k views

Git Svn dcommit error - restart the commit

Last week, I made a number of changes to my local branch before leaving town for the weekend. This morning I wanted to dcommit all of those changes to the company's Svn repository, but I get a merge ...
13
votes
5answers
4k views

git clone of git-svn tree?

I've got a 'git-svn' working tree. I'd like to clone a "pure" git repo off this, and then use git push/pull to move changes between the git-svn tree and the git tree, while also using 'git svn ...
13
votes
4answers
2k views

Is there an acceptable Linux targeted GUI client for git-svn?

My employer uses subversion for version-control, and this is unlikely to change. I'm interested in learning more about git, and using git-svn to interface with my employer's subversion repositories. ...
12
votes
2answers
614 views

git svn gatekeeper repository

I have beem using git for quite some time now, mainly git-svn. Now I want to convince my colleagues to switch from svn to git. But unfortunaly the precondition is that the svn repository keeps on ...
12
votes
1answer
2k views

Checkout remote branch using git svn

I have checked out a svn repository using git svn. Now I need to checkout one of the branches and track it. Which is the best way to do it?
12
votes
4answers
1k views

git-svn: reset tracking for master

I'm using git-svn to work with an SVN repository. My working copies have been created using git svn clone -s http://foo.bar/myproject so that my working copy follows the default directory scheme for ...
12
votes
2answers
788 views

How much of the power of git is lost by using git-svn and a shared subversion mainline?

I'm evaluating various options for getting our team away from CVS. We have another large team on another site using Subversion, and some of our developers work with the Subversion server. Therefore, ...
11
votes
3answers
337 views

Are there any automated SVN->GIT syncing services?

There's an SVN open-source project which I have read-only access to, and I'd like to create a GIT mirror of that project up to date on GitHub. I know how to set up the initial mirror and then keep ...
11
votes
3answers
2k views

Resuming git-svn clone

I started cloning a SVN repository using git-svn's clone operation. After about 6 hours of importing (it's a bit repo), my computer went and slept on me. Is there a way to resume the operation ...
11
votes
1answer
2k views

Can't invoke git-svn from command line

I just installed git on my linux machine (Kubuntu distro) by running the following command: sudo apt-get install git-core git-doc gitweb git-gui gitk git-email git-svn I would like to migrate a ...
11
votes
4answers
481 views

Working locally with Git when main repository is SVN

There is an open source project I want to checkout and contribute to. The main repository is SVN but I want to work in Git. Is this possible? Most of my searches turns up guides where you move from ...
11
votes
3answers
2k views

Add svn repo to existing git repo?

I know you can track a svn repo with git by using git svn init, however that is for if you want to create a brand new repo. My situation is that I currently already have an existing git repo and want ...
11
votes
1answer
1k views

Mapping between git committers and SVN users

I'm using git-svn to store a "staging" version of some SVN repo, where other users are allowed to pull from this staging repo and commit there changes back to it, then the commits on the staging repo ...
11
votes
2answers
2k views

Why does git svn dcommit lose the history of merge commits for local branches?

I have a local git repository created with git svn clone. I make a local branch, make some changes, switch back to master, git svn rebase and if it's all good, I merge my branch back into master. ...
10
votes
1answer
257 views

mysterious git behaviour

I have since fixed this problem. But I still don't know why what I did worked. We have an svn repository for our code at work. I have a local git-svn repository because I <3 Git. :) We use ...
10
votes
1answer
1k views

Why is the meaning of “ours” and “theirs” reversed with git-svn

I use git-svn and I noticed that when I have to fix a merge conflict after performing a git svn rebase, the meaning of the --ours and --theirs options to e.g. git checkout is reversed. That is, if ...
10
votes
3answers
681 views

How can I move commits from the trunk to a branch in Git?

I made a bunch of commits to the master and realized after the fact that they should have been in a branch. I've looked at various things about rebasing and merging and resetting the master. But no ...
10
votes
4answers
9k views

GIt integration for Coda app

Anyone can recommend a solution for this?
10
votes
5answers
4k views

git-svn not a git command?

While attempting to get an old svn dump of a project under git control, I ran into an interesting problem. Whenever I run git svn, I get an error saying it isn't a git command, yet there is ...
9
votes
6answers
306 views

What's the best way to transfer a GIT-SVN debug->feature branch to trunk?

I've got a trunk setup where all my production code goes. Then I have a debug branch (parent is trunk) which I add debugging code such as logging, var dumps, etc... this should never be in ...
9
votes
2answers
834 views

The svn repository I've imported into git using git-svn has moved

I'm working with a git repository using git-svn. Everything went fine until the day the maintainers of the svn repository decided to move the repository to a different URL. How can I tell my git-svn ...
9
votes
4answers
1k views

Can Git-svn be used on large, branched repositories?

I am trying to use git as a frontend to a svn repository in order to be able to use git's nice features like simple branching, stashing etc. The problem is that the SVN repository is quite large ...
9
votes
3answers
1k views

git svn fetch retrieves the same Subversion revision multiple times for branches

I am seeing git svn fetch repeatedly retrieve the same Subversion revisions when it finds branches in my Subversion repository. We are using the standard Subversion repository layout, with top level ...
9
votes
2answers
3k views

Expected FS format '2' found format '3 git-svn

I was just checking out git-svn and thought I would give it a try with one of my existing repository. When I ran git-svn I got this error. Couldn't open a repository: Unable to open an ra_local ...

1 2 3 4 5 13