I\'m working on a project (alone) and for every feature I develop I create a new branch, work on this feature, then merge it to master. So normally I never work on two different
You can found addition criticism to the -no-ff option in "Understanding the Git Workflow", mainly because it would break git blame
.
More at "fast forward when using pull and no-ff when pull".
As explained in "Why does git use fast-forward merging by default?", unless you are talking about a really long-lived branch, a fast-forward merge is preferable.