```bash! git remote -v # to check what remotes are available git remote add <remote-name> <remote-address> git status git branch -v git checkout -b <branch-name> # make a new branch from current one git log | less ```