This commit is contained in:
Robin Hübner 2017-08-04 00:47:12 +02:00
parent 4c37585565
commit b71cf2f2bb
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,9 @@ Branching
# create a new branch and switch to it # create a new branch and switch to it
git checkout -b your-branch-name git checkout -b your-branch-name
# switch to a branch by name
git checkout your-branch-name
# merge changes from another branch into your current branch # merge changes from another branch into your current branch
git merge other-branch-name git merge other-branch-name