I have converted a SVN project to git using svn2git.
Everything went o.k. except there is no relation between the branches. Each branch starts with the same commits (same SHA1 hash value as the master up to the point, where the branch takes its own commits).
This is how it schould look like:
master branch1 branch2
| | |
| | |
| |-------'
| |
|-------'
|
|
|
This is how it looks right now:
master branch1 branch2
| | |
| | |
| | |
| | |
| | |
| | | (same commit hash)
| | | (same commit hash)
| | | (same commit hash)
How can I fix this?
Thank you.
Stefan
Sorry, my mistake. I used
git logthe wrong way.Forgot to add the
--alloption to show me all the branches at once.