I merged my development branch to staging branch but I can't see the merge commit on the staging branch. What am I doing wrong? My workflow is as follows.
- Checkout development branch and make some changes
- Pull development branch
- Commit development branch to local repo
git checkout -q staging
git merge development
git push origin staging:staging
git checkout -q development
git push origin development:development
I use VS Code GUI for git tasks. I have another dev working in the same project. For some reason in both branches, the commit history looks exactly the same. Earlier it used to show the merge commit without any issue but not anymore. Neither of us are able to figure out where things went wrong.
When you perform a merge between two branches with Git and the branch you are merging is a strict superset of the branch you're merging into, Git performs what's called a fast-forward merge, which basically means that the branch you're merging into is just directly updated to be exactly the same as the other branch. In other words, no merge commit is created.
However, sometimes this is undesirable and you want to create a merge commit regardless. You can do that by using
git merge --no-ff
. So in your example, at step 5, you'd rungit merge --no-ff development
.This can be confusing because most hosting platforms like GitHub always perform a merge commit when merging, even though Git does not.