美文网首页
git 自己使用心得(3)mac

git 自己使用心得(3)mac

作者: long186 | 来源:发表于2018-06-22 11:45 被阅读0次

    如何取消add

    git reset HEAD 上一次add里面取消

    如何取消commit

    git reset --hard HEAD~1

    git reset --hard   《 commit的id》

    如果提交git发现有错误需要回退

    git reset --hard HEAD~1

    git push --force

    如果取消某次的提交

    git reset --hard     commit的id

    git push origin HEAD --force  

    1、切换远程仓库地址:

    方式一:修改远程仓库地址

    【git remote set-url origin URL】 更换远程仓库地址,URL为新地址。

    方式二:先删除远程仓库地址,然后再添加

    【git remote rm origin】 删除现有远程仓库 

    【git remote add origin url】添加新远程仓库

    2、【git remote -v】查看远程仓库地址

    3、error:failed to push some refs to。

    这个问题是因为远程库与本地库不一致造成的,那么我们把远程库同步到本地库就可以了。 

    使用指令

    gitpull--rebaseoriginmaster 然后提交就可以啦

    相关文章

      网友评论

          本文标题:git 自己使用心得(3)mac

          本文链接:https://www.haomeiwen.com/subject/ilxkyftx.html