On Dec 23, 2:53 pm, "Marcus D. Hanwell" <[email protected]> wrote:
> Hi,
>
> Our open source project would like to move over to Git, and host at
> GitHub. The initial import of our repository seemed to go very well
> and I was able to upload the master branch without any problems. I do
> not seem to be having any luck uploading any other branches or tags
> though. I found a few posts about this but none provided a solution
> that worked here.

  Can you describe what you tried, and what you saw?

  git svn doesn't properly import tags (since svn doesn't properly
implement tags).  You may want to manually sort out your tags from
your branches, figure out exactly what you want, and then push them.

  git push does not push tags by default.  Once you have the set of
tags you actually want:

  git push --tags

  As for branches, I'd be most comfortable pushing them one at a time:

  git push origin somebranch:somebranch
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"GitHub" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/github?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to