1)查看仓库已配置的远程源
>: git remote >: git remote -v
2)查看remote命令帮助文档
>: git remote -h
3)删除远程源
>: git remote remove 源名 eg: git remote remove origin
4)添加远程源
>: git remote add 源名 源地址 >: git remote add orgin https://gitee.com/zeng/xxx.git
5)提交代码到远程源(常用)
>: git push 源名 分支名
6)克隆远程源(常用)
>: git clone 远程源地址
7)从远程仓库拉去代码(常用)
>: git pull 源名 分支名
标签:git,remote,仓库,远程,Git,链接,源名 From: https://www.cnblogs.com/wellplayed/p/17982643