How to remove the first commit in git?
问题 I am curious about how to remove the first commit in git. What is the revision before committing any thing? Does this revision have a name or tag? 回答1: For me, the most secure way is to use the update-ref command: git update-ref -d HEAD It will delete the named reference HEAD , so it will reset (softly, you will not lose your work) all your commits of your current branch . If what you want is to merge the first commit with the second one, you can use the rebase command: git rebase -i --root A