====== Revert to a Specific Commit======
{{template>meta:template:pageinfo#tpl
|desc=Introduce how to revert to a specific commit.}}
===== Steps =====
- Run git reflog to see the reference logs((note:>Reference logs, or reflogs, record when the tips of branches and other references were updated in the local repository. )).
- Run git reset %%--%%soft HEAD@{id}, where id is the ID of target commit to revert to.
===== Demo =====
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 ..." to update what will be committed)
(use "git restore ..." 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 ..." to unstage)
modified: action.php
{{template>meta:template:refnote#note}}
===== Further Reading =====
* //[[https://git-scm.com/docs/git-reset]]//
* //[[https://git-scm.com/docs/git-reflog]]//