diff --git a/doc/gitlab-basics/start-using-git.md b/doc/gitlab-basics/start-using-git.md index fde34da07fc209707d5ebc891b6af878f3dbcab8..b5cdf488c137cd84ba60b19560910a1b59366911 100644 --- a/doc/gitlab-basics/start-using-git.md +++ b/doc/gitlab-basics/start-using-git.md @@ -175,7 +175,7 @@ Here, `<number>` is the number of commits to undo. For example, if you want to undo only the latest commit: ```shell -git rest HEAD~1 +git reset HEAD~1 ``` The commit is reset and any changes remain in the local repository.