A git pull is a git fetch followed by a git merge . - A merge, if it leads to a merge commit, requests this message.
I would suggest doing git rebase instead of merging. This helps keep the story linear and avoids additional compliments. A git pull --rebase does this at a time (i.e. This is a git fetch followed by a git rebase ).
Robert Siemer
source share