当前位置:   article > 正文

Git查看当前仓库地址并切换新的仓库地址_git 查看仓库地址

git 查看仓库地址

项目场景:

项目更换了仓库地址,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)
  • 1
  • 2
  • 3

方式二: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)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

Git切换新的仓库地址:

.git 文件所在目录下执行:
git remote set-url origin 新仓库地址 示例:

D:\PythonProject>git remote set-url origin https://github.com/Yyyyyyyyy/Yy.git
  • 1

以上便将工程的原仓库地址 https://github.com/Xxxxxxxx/Xxxxxx.git 切换为新仓库地址 https://github.com/Yyyyyyyyy/Yy.git

可以 git pull origin 分支名 拉取代码啦。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/120148
推荐阅读
相关标签
  

闽ICP备14008679号