I used the web interface to change my project from svn to git.  Then, I 
converted my svn repository to git using the following commands inside of a 
staging directory:

$ git svn clone --stdlayout https://projectname.googlecode.com/svn projectname
$ cd projectname
$ git remote add googlecode https://code.google.com/p/projectname
$ git push --all googlecode
$ git push googlecode refs/remotes/tags/*:refs/tags/*
 

Still in the staging directory, the same one I ran the above commands in, 
If I do git branch -a I see all my branches listed like:

remotes/branch_name1
remotes/branch_name2
 

However, If I clone the project into a fresh directory and run git branch -a 
or git branch -r I don't see the branches. The only output I get is: 

git branch -a
 * master
 remotes/origin/HEAD -> origin/master
 remotes/origin/master
git branch -r
 origin/HEAD -> origin/master
 origin/master
 

What must I do during the conversion process or afterwards when I clone the 
project to be able to see all my branches? I'm sorry if this is a duplicate 
of another post, but I did search and I wasn't sure if the other questions 
applied here or not. Thanks for any help.

-- 
You received this message because you are subscribed to the Google Groups 
"Project Hosting on Google Code" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-code-hosting+unsubscr...@googlegroups.com.
To post to this group, send email to google-code-hosting@googlegroups.com.
Visit this group at http://groups.google.com/group/google-code-hosting.
For more options, visit https://groups.google.com/d/optout.

Reply via email to