查看:1git remote -v
添加:1git remote add origin git@github.com:michaelliao/learngit.git
修改:1git remote set-url origin git@github.com:michaelliao/learngit.git
或者:12git remote rm origingit remote add origin git@...git
强制push覆盖远程:1git push -f <remote> <branch>