git删除被误删的分支

在使用git的过程中,因为人为因素造成分支(commit)被删除,可以使用以下步骤进行恢复。

首先用以下步骤创建一个新分支,修改一些文件后删除,以便进行恢复。

1.创建分支 abc

git branch abc

2.查看分支列表

git branch -a
  abc
* develop
  remotes/origin-dev/develop

3.使用git log -g 找回之前提交的commit

commit 3eac14d05bc1264cda54a7c21f04c3892f32406a
Reflog: HEAD@{1} (fdipzone )
Reflog message: commit: add test.txt
Author: fdipzone 
Date:   Sun Jan 31 22:26:33 2016 +0800

    add test.txt

4.使用git branch recover_branch[新分支] commit_id命令用这个commit创建一个分支

git branch recover_branch_abc 3eac14d05bc1264cda54a7c21f04c3892f32406a

git branch -a
* develop
  recover_branch_abc
  remotes/origin-dev/develop

 

可以见到recover_branch_abc已创建 
 

5.切换到recover_branch_abc分支,检查文件是否存在

git checkout recover_branch_abc
Switched to branch 'recover_branch_abc'

ls -lt
total 8
-rw-r--r--   1 fdipzone  staff     4  1 31 22:38 test.txt

 

这样就可以恢复被误删的分支了

原文地址:https://www.cnblogs.com/xd502djj/p/9319980.html

转载请注明原文地址!

你可能感兴趣的:(git)