记录一些常忘记的命令:
1、查看本地仓库对应的远程git地址
git remote -v
git remote show origin
2、本地分支推到远端
git push --set-upstream origin <branch-name>