使用git remote -v
命令可以查看本地设置好的所有远程仓库地址.
➜ learn-vue git:(master) git remote -v
origin https://github.com/qyf404/learn-vue.git (fetch)
origin https://github.com/qyf404/learn-vue.git (push)
其中fetch
表示从远程拉代码的地址. push
表示向远程推代码的地址.
使用git remote -v
命令可以查看本地设置好的所有远程仓库地址.
➜ learn-vue git:(master) git remote -v
origin https://github.com/qyf404/learn-vue.git (fetch)
origin https://github.com/qyf404/learn-vue.git (push)
其中fetch
表示从远程拉代码的地址. push
表示向远程推代码的地址.