遠端篇
ssh-keygen -t rsa
ssh -T [email protected]
git remote -v
git remote add <short name> <repo url>
git remote rm <short name>
git remote rename <short name> <new name>
git branch -a
git push <remote name> <branch name>
git push -u <remote name> <branch name>
git branch -u <remote>/<remote branch>
git branch --unset-upstream
git clone <repo URL>
git clone <repo URL> -b <branch name>
git clone <repo URL> <folder name/path>
git clone <local project>
git fetch <remote name>
git fetch --all
git remote update
git pull
git pull --rebase
git push -f
git push <remote name> :<branch name>
git remote show <remote name>
git remote prune <remote name>
git remote update -p
git fetch --all -p
git fetch -p