远程仓库的创建|删除|重命名

远程仓库命名 origin (约定俗成)
git remote 列出远程仓库名
git remote add [name] +RepoUrl 添加远程仓库(名)
git remote rename [old_name] [new_name] 重命名远程仓库(名)
git remote rm [name] 删除远程仓库(名)

猜你喜欢

转载自blog.csdn.net/Cp847665268/article/details/84576902