Update README.md

This commit is contained in:
Jeff Regan
2021-02-12 11:24:36 -08:00
committed by GitHub
parent 526ae9ff57
commit d0b101dc90

View File

@@ -47,7 +47,7 @@ function createBranch {
branch=$1 branch=$1
echo "Making branch $branch : \"$title\"" echo "Making branch $branch : \"$title\""
git branch -D $branch # delete if it exists git branch -D $branch # delete if it exists
git co -b $branch git checkout -b $branch
git commit -a -m "$title" git commit -a -m "$title"
git push -f origin $branch git push -f origin $branch
} }
@@ -61,7 +61,7 @@ function createPr {
``` ```
function refreshMaster { function refreshMaster {
git co master git checkout master
git fetch upstream git fetch upstream
git rebase upstream/master git rebase upstream/master
} }