# 添加仓库地址
git remote add <远程仓库名称> <远程仓库URL>
示例:git remote add name https://github.com/username/repository.git
# 查看本地已经有的远程地址来检查是否添加仓库成功
git remote -v
# 本地代码更新到新添加的仓库地址
标签:git,remote,仓库,添加,本地,远程 From: https://www.cnblogs.com/peijiao/p/18008408