$ git init
$ git add -A
$ git commit -m "Message"
-a artinya all changes
$ git commit -am "Message"
$ cd /to/repository
$ git remote add origin <alamat repository>
$ git push -u origin --all
$ git push -u origin <nama-brance>
default brance adalah master
$ git checkout <nama-brance>
$ git checkout -b <nama-brance
$ git branch
$ git checkout master
$ git merge <nama-brance>
$ git checkout -f
or
$ git reset --hard HEAD
git branch branch-name
git branch -a
git checkout branch-name
git checkout -b new-branch-name
git branch -m old-branch new-branch
git checkout master
git branch -b branch-to-delete
git push origin --delete remote-branch-name