If you want to force git to keep branches history, similarly to what you would see during a pull request, you can add a --no-ff flag, resulting in a nice commit history tree. git merge --no-ff some-branch-name Another view that makes it much easier to ...
↧