git reset退回指定版本后,怎么提交上服务器?
阿神
阿神 2017-06-05 11:08:52
0
3
988

情况是这样的:

今天发现稍早的一次提交,刚刚发现有些文件被删除了。

现在要退回指定的版本commit:20a3725c

git reset --hard 20a3725c

然后重新git push时失败,提示:

To git@xxx/xxx.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'git@xxx/xxx.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.

现在需要恢复到版本20a3725c,应该怎么解决呢?

还有一个问题就是能够将原本删除的文件,恢复到当前版本吗?(因为当前版本有增减某些文件(在其它文件夹,不与被删文件同一文件夹))

阿神
阿神

闭关修行中......

全部回复(3)
淡淡烟草味

还没有想到办法解决。

(先备份当前有修改过的文件)

最好,先返回指定版本
git reset old_commit_id

然后,新建分支
git branch -b rcommit_id

再,删除线上的master分支(将默认分支切换到其它分支)
git push origin :master分支(将默认分支切换到其它分支)

git push origin :master


然后,将之前备份的文件覆盖当前分支内的文件。master最后,将分支名改为

,再提交即可,再设置为默认分支。🎜
git branch -m rcommit_id master
git push origin master
小葫芦

必须要修改下才可以推送。。。
如果你只是要恢复某个版本,可以使用git revert来把那个提交取消掉

为情所困

git revert '20a3725c
git push

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板