Skip to content

Git Commands

superstringer edited this page Apr 15, 2019 · 1 revision

Git Commands

Pull without pushing local changes

git status
git stash
git status
git pull
git stash list
git stash pop
git status

Checkout a remote branch

git fetch
git checkout $BRANCH_NAME

Everyday maintenance

git checkout $BRANCH_NAME
git merge master
git push

Clone this wiki locally