Why do I get this error message?
|
|
(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:
or
And you get the follow error messages, when using the following commands.
Unable to determine upstream svn information from working tree or
unable determine upstream svn information working tree history or
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. |
|||||||||
|
|
I got this message after I incorrectly added the (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 |
||||
|
|
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. |
||||
|
|
|
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:
|
||||
|
|
|
Another cause for this problem is a wrong The |
||||
|
|
|
I got this message because I used a FQDN for the E.g.
But I did:
(We have a machine that regularly syncs a git repo with svn, then everyone else has |
||||
|
|
|
You may also get this error, when you have checkout freshly created SVN repo. I have solved this by
|
||||
|
|