副标题什么的
经常是先克隆了原始项目查看,然后发现需要作些修改,就需要 Fork 到自己账号下一份,所以要再修改一下远程仓库地址;
涉及命令为:git remote;
git remote
12345678910111213141516171819202122232425262728293031323334353637
# 查看远程仓库git remote -v# origin [email protected]:BrowserSync/browser-sync.git (fetch)# origin [email protected]:BrowserSync/browser-sync.git (push)# 重命名远程仓库git remote rename origin BrowserSyncgit remote -v# 添加远程仓库git remote add wdssmq [email protected]:wdssmq/browser-sync.gitgit remote -v# 获取并查看分支信息git fetch --allgit branch -a# -a 命令不懂啥用处# git fetch -a# 设置默认仓库git config branch.master.remote wdssmq# 下边命令可以直接修改远程仓库地址# git remote set-url origin <url># 从另外的远程库合并更新git merge --no-commit BrowserSync/master
做最终做到的事,成为最终成为的人;