show/hide this revision's text 2 typo

Simply knowing that git reflog exists, and will allow me to revert to any previous commit if something has gone wrong. It remembers those commits that was "deleted" by rewriting history, using commands like git rebase, git reset, and git commit --amend.

Show every commit that the master branch has pointed to in the past:

git reflog show master

Revert to the tenth commit in the list:

git reset --hard master@{10}

Start a new branch from the commit that the master pointed to one month back:

git checkout -b branchX master@{'one month ago'}

Maybe not be the features that you use most often, but knowing that they exist allows you to use other features without worrying about destroying anything.

show/hide this revision's text 1

Simply knowing that git reflog exists, and will allow me to revert to any previous commit if something has gone wrong. It remembers those commits that was "deleted" by rewriting history, using commands like git rebase, git reset, and git commit --amend.

Show every commit that the master branch has pointed to in the past:

git reflog show master

Revert to the tenth commit in the list:

git reset --hard master@{10}

Start a new branch from the commit that the master pointed to one month back:

git checkout -b branchX master@{'one month ago'}

Maybe not be the features that you use most often, but knowing that they exist allows you to use other features without worrying about destroying anything.