Hi,
When I m trying to migrate from subversion to git able to saw the all the branches of that repository when run the command like
$git branch -a
After that i push the git repository into bitbucket using the command like:
$git push -u origin --all
, but here in bitbucket i m able see only the master branch. Can any one resolve this issue pls.
Thanks in Advance.
I Resolve This Problem By Executing The Cleanup command
$ java -Dfile.encoding=utf-
8
-jar svn-migration-scripts.jar clean-git --force
Finally I m able to view the Brances in my Bitbucket
Where did you run this command?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am also having the same issue. I have run the push command in verbose mode, it display all the branches and tag creation logs, but in bitbucket it showing only the master with no tag and branch. And if try to push, again, it says everything is upto date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nageswarara,
You want to make sure you have checked out a certain branch in your repo first, by doing:
git checkout <branch_name>
Afterwards, you should be working on that specific branch: http://git-scm.com/book/en/Git-Branching-What-a-Branch-Is
Also, be sure to read up on merging: http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging
Cheers,
Jesse
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.