在使用master时需要恢复git rm

时间:2018-01-16 04:33:00

标签: git github

我在主分公司工作。 我使用了以下命令。

git pull origin master

git rm <some files>

git commit -m "meesage"
git push origin master 

我想找回我从遥控器上删除的文件:( 请回复。

我试过了:

git reset head 
git reset --hard head

没有任何效果

1 个答案:

答案 0 :(得分:1)

您需要告诉它返回 1版本。一种方法是指定HEAD~

git reset --hard HEAD~

没有代字号,您只是告诉它恢复到最近修订后的状态,即删除文件的状态。