1. git reset --hard *** failing
1. git reset --hard ***version failing
错误信息:fatal: Could not reset index file to revision 'origin/master'
解决方法: 使用下面2条命令后,
$ git gc
$ git reset
Before git reset
; I had to do rm .git/index。
再回退到指定的版本。
$ git reset --hard <target_branch>
标签:reset,index,经验,--,hard,git,使用,failing
From: https://www.cnblogs.com/fire909090/p/17751417.html