A week ago I started a new branch in SourceTree by clicking the big Branch button, selected "New branch" and gave it name "#375". I then did a handful of commits before merging into the master branch by following the following procedure:
Se image below. Why do I not see the blue line splitting into two lines at the "original branch point", and then being merged into one line again at the "merge point"?
I'm fairly new to both git and SourceTree, but I'm familiar with mercurial hg, in which this procedure was trivial. I was expecting the same procedure to work here. Help?
**Edit**: I realize I haven't done any commits on the master branch in the meantime, which may be the cause for it being invisible. Yet I'd still like to know the point at which I started branch #375 for historic reasons. For instance if I want to rollback the feature represented by this branch.
The problem was solved by checking "Create a new commit even if fast forward is possible"
Good call. I guess my work repo is active enough that fast forwards are never possible expect when I'm pulling.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It looks like you checked the "rebase" option which re-writes your history to make it appears as though all the commits from one branch (#375) were made directly to the other (master).
To fix you history, checkout master and do a hard reset to the original branch point. Then run the merge again, and make sure NOT to rebase.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually it was as simple as checking "Create a new commit even if fast-forward is possible", but your answer lead me on track so thanks.
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.