defaultselected icon
light-blueselected icon
purple-spaceselected icon
matrixselected icon
vs codeselected icon
mid-nightselected icon

git init

Copied Successfully!

REWRITING

Display every change you made to your repository. It displays the last few actions like commit, rebase, reset and the like.

git reflog copy

Move the HEAD backward n commits, but don’t change the working directory.

git reset --mixed HEAD~<n> copy

Move the HEAD backward commits, and change the working directory to match.

git reset --hard HEAD~<n> copy

Rewriting

Search