项目场景:
项目更换了仓库地址,Python工程和Java工程(均适用)不重新 git clone 进行克隆仓库,直接切换新的地址。以下实现Git查看当前仓库地址以及Git切换新的仓库地址
Git查看当前仓库地址:
方式一:git remote -v
示例:
D:\PythonProject>git remote -v
origin https://github.com/Xxxxxxxx/Xxxxxx.git (fetch)
origin https://github.com/Xxxxxxxx/Xxxxxx.git (push)
方式二:git remote show origin
示例:
D:\PythonProject>git remote show origin
* remote origin
Fetch URL: https://github.com/Xxxxxxxx/Xxxxxx.git
Push URL: https://github.com/Xxxxxxxx/Xxxxxx.git
HEAD branch: master
Remote branches:
master tracked
Local branches configured for 'git pull':
master merges with remote master
Local refs configured for 'git push':
master pushes to master (up to date)
Git切换新的仓库地址:
在 .git
文件所在目录下执行:git remote set-url origin 新仓库地址
示例:
D:\PythonProject>git remote set-url origin https://github.com/Yyyyyyyyy/Yy.git
以上便将工程的原仓库地址 https://github.com/Xxxxxxxx/Xxxxxx.git 切换为新仓库地址 https://github.com/Yyyyyyyyy/Yy.git文章来源:https://www.toymoban.com/news/detail-504561.html
可以 git pull origin 分支名
拉取代码啦。文章来源地址https://www.toymoban.com/news/detail-504561.html
到了这里,关于Git查看当前仓库地址并切换新的仓库地址的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!