美文网首页
iOS-Git撤销已经推送(push)至远端仓库的提交(comm

iOS-Git撤销已经推送(push)至远端仓库的提交(comm

作者: 下班不写程序 | 来源:发表于2018-08-08 14:31 被阅读207次

    在git push之后,发现有些代码需要进行改动,这些改动在原则上不应该作为一次新的提交;或者多人合作开发时,提交的版本有异常,需要回滚到上个版本,这时,我们就需要撤销这次推送(git push)与提交(git commit),然后进行代码修改,再重新进行提交和推送;一般情况下,我们需要三步操作来达到这个目的。

    1.撤销提交信息

    首先,通过git log查看提交信息,以便获取需要回退至的版本号:

    $ git log
    commit a44822002522f2a1wdfvgbnj7cec00a7d3d15469 (HEAD -> master, origin/master, origin/HEAD)
    Author: lihe5443 <*********@qq.com>
    Date:   Sun Mar 4 11:14:55 2018 +0800
    
        correct_for_bugs
    
    commit aa909cff2239536df14820fe086d96305b24e9f1
    Author: heli3445 <*********@qq.com>
    Date:   Sat Mar 3 23:43:03 2018 +0800
    
        简书-代码优化
    

    我们需要撤销correct_for_bugs这次提交,所以需要回退至的版本是简书-代码优化,即需要回退至的版本号是:aa909cff2239536df14820fe086d96305b24e9f1。

    然后,通过git reset –soft <版本号>重置至指定版本的提交,达到撤销提交的目的:

    $ git reset --soft aa909cff2239536df14820fe086d96305b24e9f1
    

    参数soft指的是:保留当前工作区,以便重新提交,比如我们这次是修改后重新提交 还可以选择参数hard,会撤销相应工作区的修改,一定要谨慎使用

    然后,通过git log确认是否成功撤销:

    $ git log
    commit aa909cff2239536df14820fe086d96305b24e9f1 (HEAD -> master)
    Author: heli3445 <*********@qq.com>
    Date:   Sat Mar 3 23:43:03 2018 +0800
    
        简书-代码优化
    

    已经成功撤销。

    2.撤销提交的代码

    通过git push origin master –force强制提交当前版本号,以达到撤销版本号的目的:

    $ git push origin  master --force
    Total 0 (delta 0), reused 0 (delta 0)
    To github.com:lihe5443/myreflect.git
     + a448220...aa909cf master -> master (forced update)
    

    必须添加参数force进行强制提交,否则会提交失败,并报错

    $ git push origin master
    To github.com:lihe5443/myreflect.git
     ! [rejected]        master -> master (non-fast-forward)
    error: failed to push some refs to 'git@github.com:lihe5443/myreflect.git'
    hint: Updates were rejected because the tip of your current branch is behind
    hint: its remote counterpart. Integrate the remote changes (e.g.
    hint: 'git pull ...') before pushing again.
    hint: See the 'Note about fast-forwards' in 'git push --help' for details.
    

    报错原因:本地项目版本号低于远端仓库版本号。

    3.修改代码,重新提交和推送

    //修改代码,添加修改
    git add .
    //重新提交
    git commit -m "correct_for_bugs"
    //重新推送
    git push origin master
    

    End.

    相关文章

      网友评论

          本文标题:iOS-Git撤销已经推送(push)至远端仓库的提交(comm

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