1.建立分支 abc
git branch abc
2.檢視分支列表
git branch -aabc* develop
remotes/origin-dev/develop
3.切換到abc分支,隨便修改一下東西後 commit
# 切換分支git checkout abc
# 建立乙個檔案
echo 'abc' > test.txt
# 提交
git add .
git commit -m 'add test.txt'
4.刪除分支abc
git branch -d abc
5.檢視分支列表,abc分支已不存在
git branch -a* develop
remotes/origin-dev/develop
恢復步驟如下:
1.使用git log -g 找回之前提交的commit
commit 3eac14d05bc1264cda54a7c21f04c3892f32406areflog: head@ (fdipzone )
reflog message: commit: add test.txt
author: fdipzone date: sun jan 31 22:26:33 2016 +0800
add test.txt
2.使用git branch recover_branch[新分支] commit_id命令用這個commit建立乙個分支
git branch recover_branch_abc 3eac14d05bc1264cda54a7c21f04c3892f32406agit branch -a
* develop
recover_branch_abc
remotes/origin-dev/develop
3.切換到recover_branch_abc分支,檢查檔案是否存在
git checkout recover_branch_abcswitched to branch 'recover_branch_abc'
ls -lt
total 8
-rw-r--r-- 1 fdipzone staff 4 1 31 22:38 test.txt
git 誤刪分支恢復方法
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!在使用git的過程中,因為人為因素造成分支 commit 被刪除,可以使用以下步驟進行恢復。1.建立分支 abc git branch abc2.檢視分支列表 git branch a abc develop remotes origin dev ...
git 恢復誤刪的分支
在使用git的過程中,因為人為因素造成分支 commit 被刪除,可以使用以下步驟進行恢復。1.建立分支 abc git branch abc2.檢視分支列表 git branch a abc develop remotes origin dev develop 3.切換到abc分支,隨便修改一下東...
oracle誤刪資料恢復方法
誤刪資料恢復 刪除表資料有三種方式 delete drop 和truncate delete誤刪除的解決方法 原理 利用oracle 提供的閃回方法,如果在刪除資料後還沒做大量的操作 只要保證被刪除資料的塊沒被覆寫 就可以利用閃回方式直接找回刪除的資料 具體步驟為 例如 誤刪除了 100條資料 刪除...