Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
1  
There's no question in here, is there? – bmargulies Jun 29 '10 at 22:10
Its a community wiki. – Chad Jun 30 '10 at 0:00
3  
That just means that lots of people might answer or edit or edit answers. It still should ask a question. – bmargulies Jun 30 '10 at 0:49

7 Answers

up vote 17 down vote accepted

(Posted Chad's "question" as an answer, fixed formatting and typos.)

There are a couple of causes for this error message.

The first, being the most common. You have two disjoint histories in your git repository: The history that you made in git, and the history from the remote svn repository.

To fix this, you need to make your git repository and svn repository share one common ancestor so git can figure what commits have changed what.

The following Article, discusses how to fix the problem:

The second possible cause of the problem is if you have an early version of git (possible, windows msysGit package) and you have just created a new git repository that communicates with a remote svn repository.

For example:

git svn init svn://svn.xxx.xxx/xxx/trunk
git svn fetch -r BASE:10

or

git clone svn://svn.xxx.xxx/xxx/trunk // Adds all the files in the revision...

And you get the follow error messages, when using the following commands.

git svn info

Unable to determine upstream svn information from working tree or

git svn rebase

unable determine upstream svn information working tree history or

  git svn dcommit

Unable to determine upstream SVN information from HEAD history

If you get the above error messages, first step is to check your git version. If your running a older git version <= 1.6.3.3.* that was in my case with (msysGit), then the easiest way to fix the problem is to update to a newest version of git such as 1.6.4.*.

The following Article discusses the problem in more detail.

share|improve this answer
Thanks for the edit bstpierre – Chad Aug 10 '10 at 1:32
Thanks for the link to the article, that let me do a switch do a different svn repository and now I'm back in business! – Matt Connolly May 5 '11 at 0:20
1  
For the first common case, the instructions on the Article is out of date. The poster here has updated instructions for the git beginners stackoverflow.com/questions/457694/… – James Jul 12 '11 at 18:05

I got this message after I incorrectly added the -s/--stdlayout parameter to the git svn clone command for a Subversion repo that did not have the "standard Subversion layout" of trunk, tags, and branches relative paths.

(The Subversion repos I usually clone do have the standard relative paths, so when I cloned a Subversion repo that didn't have them using my usual git svn clone command, I got this cryptic message. The message is 100% correct, but almost 100% useless when trying to figure out what the problem is.)

share|improve this answer
I ran into this problem because i had added /trunk to the svn url while doing git svn clone with the -s option. So while not entirely the same as your situation, your comment helped me discover my mistake. thx! – jeroen Nov 30 '11 at 8:44

i got this message because of cloning the svn repo with --no-metadata option. Maybe that's the case with Your problem too.

When cloning it without that option everything is fine.

share|improve this answer

In my case, the HEAD from the svn repo should have been matched to the HEAD from the git repo. This should solve the problem:

git update-ref refs/remotes/git-svn refs/remotes/origin/master
share|improve this answer

Another cause for this problem is a wrong svn-remote.svn.rewriteRoot option (see this answer for instructions on using this).

The git-svn-id line in your commits imported from Subversion has to match the rewriteRoot URL if it is set.

share|improve this answer

I got this message because I used a FQDN for the git svn init command but the pre-existing git-svn integration was using just the hostname.

E.g. grep git-svn-id showed:

git-svn-id: svn://host/repo/...

But I did:

git svn init -Ttrunk svn://host.domain.com/repo

(We have a machine that regularly syncs a git repo with svn, then everyone else has git config --add remote.origin.fetch refs/remotes/*:refs/remotes/* to fetch down the svn synced branches.)

share|improve this answer

You may also get this error, when you have checkout freshly created SVN repo.

I have solved this by

  1. First doing an initial commit via svn command
  2. Then clone the repo using git svn command.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.