vote up 3 vote down star
2

Below svn branches have been added into .git/config file.

[svn-remote "svnb02"]
        url = https://svn/repos/Project/branches/b02
        fetch = :refs/remotes/git-svn-b02
[svn-remote "svnb03"]
        url = https://svn/repos/Project/branches/b03
        fetch = :refs/remotes/git-svn-b03

But only "svnb03" can be fetched using below command:

git svn fetch -R svnb03 -r HEAD

For "svnb02", below command will return quietly without fetching anything.

git svn fetch -R svnb02 -r HEAD

Any commed will be welcome.

flag
Can you tell us what's in .git/refs/remotes ? – Milan Babuškov Mar 4 at 16:14
There are 2 files in .git/refs/remotes. The file content is something like: 6f5e2e7dca4a351321f8651f5865ac4ca2bcb256 git-svn git-svn-b03 Thanks – Lei Mar 4 at 23:35

2 Answers

vote up 1 vote down check

Maybe branch HEAD is not being set. Look at .git/remotes/svnb02/HEAD. If it's missing or not up-to-date, that might account for your problem.

Git has code to find HEAD in this situation, but apparently git svn doesn't; there's a patch in the works about this.

If that's okay, then I'd look for a weird entry to a svn. or remote.svn. variable in the config file or something weird in the .git/remotes directory.

This is all guesswork. A weird situation usually has a weird explanation. Good luck.

EDIT -- I'm assuming that svnb02 had new revisions when you had this problem. Your command is only going to fetch from svn if there are un-fetched revisions.

link|flag
Thanks Paul, I was kinda stuck on this one. +1 – VonC Feb 19 at 21:35
Yeah, yesterday I was looking forward to somebody having an answer for this that I could learn from. This feels a little like trying to fix a plumbing problem over the telephone. – Paul Feb 19 at 21:47
Hi Paul, Many appreciate for you answer. It's very helpful. To clarify the problem, both svnb02 and svnb03 are new revision and came from same trunk. The most confusing thing is svnb03 can be fetched correctly, but svnb02 cannot. I didn't set any HEAD manually, just used "git svn fetch .." – Lei Feb 25 at 22:29
vote up 1 vote down

Note I am a new user so can only have one hyperlink in my reply. Assume that BASE is "https://svn/repos/Project".

My answer is not directly the cause of this issue but it is closely related and is almost certainly a factor.

The problem is related to the fact that you are treating an SVN branch as the git trunk. I have found that new versions of git (1.6+) don't allow you to check out branches or tags as the git trunk. Git assumes a standard layout. In your case it probably assumes.

trunk - {BASE}/trunk/ branches - {BASE}/branches/ tags - {BASE}/tags/

Since b02 and b03 are children of branches it thinks they are branches and not trunk. In late 1.5.x versions I found that the behaviour is not very consistent but in 1.6.x versions (especially later 1.6.x versions) the behaviour is quite repoducable.

The work around that has worked for me very well is to explicitely declare tags and branches URLS:

git svn init -T {BASE}/branches/b03 -b {BASE}/anydir -t {BASE}/tags git svn fetch -r33666 # where 33666 is the most recent version.

There after I suggest using git svn rebase.

link|flag

Your Answer

Get an OpenID
or

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