在我们克隆远程仓库后,当再次pull 的时候出现报错情况,
解决一:
连接远程仓库,把本地仓库与远程仓库连接起来 运行命令:git remote add online git@github.com:yourGitHubId/testRepo.git
,
这里 add 后面的 online 是随便取的,官方习惯用origin,我这里用online
然后运行 git remote -v
查看当前连接的远程仓库信息。
2024-01-22 20:48:22
在我们克隆远程仓库后,当再次pull 的时候出现报错情况,
解决一:
连接远程仓库,把本地仓库与远程仓库连接起来 运行命令:git remote add online git@github.com:yourGitHubId/testRepo.git
,
这里 add 后面的 online 是随便取的,官方习惯用origin,我这里用online
然后运行 git remote -v
查看当前连接的远程仓库信息。