回答:
を行っていない限り、git gc
何も失われていません。あなたがする必要があるのは再びそれを見つけることです:)あなたは何を得るのですか:
git reflog show
これにより、何が起こったのか、欠落しているノードのIDが表示されます。
上記の答えは正しいです。これは私がやったことです:
$ git reflog
5b35f6d HEAD@{1}: pull github master: Fast forward
ca92d15 HEAD@{2}: checkout: moving from 759dab1b15731ce7680c26839ca470d20e709e36 to master
759dab1 HEAD@{3}: commit (merge): Merge branch 'master' of github.com:gonzojive/IODB-ui into HEAD
065e269 HEAD@{4}: commit: added fieldsets to snazzy form
f357606 HEAD@{5}: commit: preliminary support for google maps.
ca92d15 HEAD@{6}: checkout: moving from master to ca92d15d272867b63d54f96d4aa57f8ecc479cd0
$ git checkout ca92d15d272867b63d54f96d4aa57f8ecc479cd0
「オーノー!」瞬間はこれです:
checkout: moving from master to ca92d15d272867b63d54f96d4aa57f8ecc479cd0
ca92d15d272867b63d54f96d4aa57f8ecc479cd0は(ブランチなし)として表示される匿名ブランチです。それに戻るには、git checkoutを実行するだけで、古い擬似ブランチが復元されます。
念のため、誤ってgcを実行する前にgitリポジトリをバックアップすることをお勧めします。
git reset --hard <commit-id>
。コミットIDは、の最初の列の英数字コードですgit reflog
。effectif.com/git/recovering-lost-git-commitsを参照してください。
# if you have already checked out to master,
# you won't know the commit-ish of your "no branch":
git fsck --lost-found # (to find your <commit-ish>)
git merge <commit-ish>
# if you are still on your "no branch" commit:
git log # (the commit-ish will be on the first line)
git checkout master
git merge <commit-ish>
# or
git log | head -n 1 | cut -d ' ' -f 2 | pbcopy
git checkout master
git merge <commit-ish>