Git version rollback problem

problem description

if there are four git versions, which are A-> B-> C-> D from far and near, and I now roll back to version B through git reset-- hard B, then the C-hard D version after B will be deleted. What can I do if I want to roll back to C now?

Oct.29,2021

git reflog -sharpccommit
git reset --hard c
Menu