查看远程仓库
1
2
3
4
5
|
# 查看远程仓库
git remote
# 查看远程仓库(含地址)
git remote -v
|
修改远程仓库地址
Git
远程仓库一般都提供两种访问协议:
- 一种是 http/https ,例如:
https://github.com/coding-fans/netcode.git
- 一种是 ssh ,例如:
git@github.com:coding-fans/netcode.git
有时我们需要修改远程仓库地址,比如将 https 地址换成用 ssh 来访问。这时,我们可以执行 set-url
子命令:
1
2
3
4
5
6
7
8
9
10
11
12
|
# 查看远程仓库
$ git remote -v
origin https://github.com/coding-fans/netcode.git (fetch)
origin https://github.com/coding-fans/netcode.git (push)
# 修改远程仓库地址
$ git remote set-url origin git@github.com:coding-fans/netcode.git
# 重新查看远程仓库,确认修改生效
$ git remote -v
origin git@github.com:coding-fans/netcode.git (fetch)
origin git@github.com:coding-fans/netcode.git (push)
|
【小菜笔记】系列文章首发于公众号【小菜学编程】,敬请关注: