Answers for "git merge vs git merge --no-ff"

1

git merge vs git merge --no-ff

By default git merge tries to execute a "fast-forward".
- default: Simply moves commits and shifts head of master to the front.
- --no-ff: Creates a merge commit instead.

--no-ff can be desirable if you want git to maintain a history of 
feature branches.
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language