Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

make current branch master

git checkout better_branch
git merge --strategy=ours master    # keep the content of this branch, but record a merge
git checkout master
git merge better_branch             # fast-forward master up to the merge
 
PREVIOUS NEXT
Tagged: #current #branch #master
ADD COMMENT
Topic
Name
4+7 =