Revert to a Specific Commit

Introduce how to revert to a specific commit.
  1. Run git reflog to see the reference logs(1).
  2. Run git reset --soft HEAD@{id}, where id is the ID of target commit to revert to.

git log --oneline
3d25eeb (HEAD -> main, origin/main, origin/HEAD) Add more functions
6db491d Beta version
a2b8650 Initial commit
git status
On branch main
Your branch is up to date with 'origin/main'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   action.php

no changes added to commit (use "git add" and/or "git commit -a")
git commit --amend
[main 580f577] Add more functions
 Date: Sat Jul 15 13:36:50 2023 +0800
 7 files changed, 127 insertions(+), 114 deletions(-)
 delete mode 100644 syntax.php
 create mode 100644 syntax/fileprism.php
git reflog
580f577 (HEAD -> main) HEAD@{0}: commit (amend): Add more functions
3d25eeb (origin/main, origin/HEAD) HEAD@{1}: commit: Add more functions
6db491d HEAD@{2}: commit (amend): Beta version
c5498e1 HEAD@{3}: commit: Beta version
a2b8650 HEAD@{4}: clone: from github.com:siyuanl96/dokuwiki-codeprism.git
git reset --soft HEAD@{1}
git status
On branch main
Your branch is up to date with 'origin/main'.

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        modified:   action.php

(1) Reference logs, or reflogs, record when the tips of branches and other references were updated in the local repository.
X C E X P