Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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.          
 
PREVIOUS NEXT
Tagged: #git #merge #git #merge
ADD COMMENT
Topic
Name
7+6 =