1.强推,当本地仓库与远程仓库代码不同步时使用可同步本地仓库和远程仓库
git push -f
2.远程库中的更新合并到本地库中,–rebase的作用是取消掉本地库中刚刚的commit,并把他们接到更新后的版本库之中。
git pull --rebase origin master
3.删除已关联的远程仓库
git remote rm origin
1.强推,当本地仓库与远程仓库代码不同步时使用可同步本地仓库和远程仓库
git push -f
2.远程库中的更新合并到本地库中,–rebase的作用是取消掉本地库中刚刚的commit,并把他们接到更新后的版本库之中。
git pull --rebase origin master
3.删除已关联的远程仓库
git remote rm origin
本文标题:常用git命令
本文链接:https://www.haomeiwen.com/subject/yfkmkctx.html
网友评论