There is no connection between branches after using svn2git

I converted the SVN project to git using svn2git. Everything went ok except that there is no connection between the branches. Each branch begins with the same commits (the same SHA1 value of the hash value as the master to the point where the branch takes its own commit).

Here's what it looks like:

master branch1 branch2 | | | | | | | |-------' | | |-------' | | | 

Here's what it looks like right now:

 master branch1 branch2 | | | | | | | | | | | | | | | | | | (same commit hash) | | | (same commit hash) | | | (same commit hash) 

How can i fix this?

Thanks.

Stephen

+4
source share
1 answer

Sorry, my mistake. I used git log wrong way.

I forgot to add the --all option to immediately show me all the branches.

0
source

All Articles