如果建立了一个远程代码库,然后遇到了远程代码库源地址修改的问题,怎么办呢?
#两种方法都是查看当前Git库源地址的 git remote -v git remote -version
#orgin为当前源地址名,[GIT URL]为欲修改源地址 git remote set-url origin [GIT URL]
添加新的Git库源地址:
#[NAME]为新的Git库源地址名,[GIT URL]为新的git库源地址 git remote add [NAME] [GIT URL]
删除一个Git库源地址:
#[NAME]为Git库源地址名 git remote remove [NAME] git remote rm [NAME]
最新评论: