-
Notifications
You must be signed in to change notification settings - Fork 443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebase fails when subversion library has a number in its branches/ directory #106
Comments
@jsdalton I have the same problem. Do you find any way to work around? |
@markwu See the pull request I just submitted. I patched up my local copy of svn2git with that change and now when I run:
It skips the branch checking stuff that was throwing the error. The rest of the repository rebases as expected. |
I am also having the same issue. However, I think I see what the issue is. In both @jsdalton example and my svn repo I have a branch and a tag with the same name. It appears that git does not like that senario and thinks the tag's revision should be the branch's or vise versa. In @jsdalton example the wordpress plugin's svn repo has both a branch named 1.4 and a tag named 1.4. I think the correct solution is to move either the tag or the branch to a new name. The only issue with that is if you are importing the complete history (or the history including when the bad tag/branch existed) In theory I am thinking the way to fix it correctly is to |
I finally have a solution that works. Using the google-analyticator as an example:
|
At least that was my diagnosis when I looked at this briefly. It seems like git is getting confused by the ambiguity of "1.4".
This is for a github mirror I have for a Wordpress plugin in the Wordpress SVN repository. This is the repository directory that's giving me difficulty: http://plugins.svn.wordpress.org/google-analyticator/
The text was updated successfully, but these errors were encountered: