Sunday, April 14, 2013

Git move master to branch

git checkout target_branch
git merge --strategy==ours --no-commit master
git commit -m "Move master to this branch..."
git checkout master
git merge target_branch

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.