远程仓库是指托管在因特网或其他网络中你的项目的版本库。
"远程"未必表示仓库在网络或互联网的其他位置,而只是表示它在别处,所以说远程仓库可以在你的本地主机上。
1- 查看远程仓库
查看已经配置的远程仓库服务器
git remote
显示
origin
用 -v 选项 显示需要读写远程仓库使用的git保存的简写与其对应的url
git remote -v
显示 简写 以及 url
origin https://github.com/path1/AGitRepo1 (fetch)
origin https://github.com/path1/AGitRepo1 (push)
2- git clone 命令如何自行添加远程仓库
??
3- 如何自己来添加远程仓库
git remote add <shortname> <url>
shortname 是简写, 就可以使用简写来代替整个url文章来源:https://www.toymoban.com/news/detail-485084.html
git remote add SName2023 https://github.com/path2/AGitRepo
git remote -v
显示
origin https://github.com/path1/AGitRepo1 (fetch)
origin https://github.com/path1/AGitRepo1 (push)
SName2023 https://github.com/path2/AGitRepo (fetch)
SName2023 https://github.com/path2/AGitRepo (push)
4- 从远程仓库中拉取
git fetch <remote>
这个命令会访问远程仓库,从中拉取所有你还没用的数据。文章来源地址https://www.toymoban.com/news/detail-485084.html
5- 推送到远程仓库
git push <remote> <branch>
将master分支推送到origin服务器
git push origin master
- 只有当你有所克隆服务器的写入权限,并且之前没有人推送过时,这条命令才能生效
- 当你和其他人在同一时间克隆,他们先推送到上游然后你再推送到上游,你的推送就会毫无疑问地被拒绝, 你必须先抓取他们的工作并将其合并进你的工作后才能推送。
6- 查看某个远程仓库
git remote show <remote>
7- 远程仓库的重命名
git remote rename origRepo newRepo
到了这里,关于Git - 远程仓库的使用的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!