1.初始化本地仓库
git init
2.查看远程所有仓库地址
git remote -v
3.查看远程仓库某一个具体地址
git remote branchname(分支名)
4.添加远程仓库地址
git remote add origin(分支名字) xxx(远程地址)
5.删除远程仓库地址
git remote rm origin(分支名字)
6.修改远程仓库名
git remote rename old_name new_name
git init
git remote -v
git remote branchname(分支名)
git remote add origin(分支名字) xxx(远程地址)
git remote rm origin(分支名字)
git remote rename old_name new_name
本文标题:git操作远程仓库
本文链接:https://www.haomeiwen.com/subject/vrskektx.html
网友评论