Thursday, March 28, 2013

Creating GIT branch and merge


--- to create:
git checkout master
$ git checkout -b new-branch
--- to merge
git commit -am "commit file in branch"
git checkout master
git merge new-branch

No comments:

Post a Comment