summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMrityunjay Saxena <mrityunjay.saxena.met14@iitbhu.ac.in>2020-09-30 23:34:08 +0530
committerJesse Duffield <jessedduffield@gmail.com>2020-10-01 17:41:32 +1000
commitfaba40554a06192ec21b5cf86f08afc1aadb46f1 (patch)
treef9e169774d2d4541ce28545f9d06af6a68ad85b3 /docs
parentc12752cf5315496282c81afcb868d6286a7ef1a5 (diff)
Limitations Section sentence mixup corrected
> If you are mid-rebase, undo/redo is not supported, because the reflog doesn't enough contain information about what specific things have happened inside that rebase. changed to > If you are mid-rebase, undo/redo is not supported, because the reflog doesn't contain enough information about what specific things have happened inside that rebase.
Diffstat (limited to 'docs')
-rw-r--r--docs/Undoing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Undoing.md b/docs/Undoing.md
index c9b114a42..7b5a15648 100644
--- a/docs/Undoing.md
+++ b/docs/Undoing.md
@@ -19,6 +19,6 @@ Because lazygit just uses the reflog to keep track of things, it doesn't matter
There are limitations: firstly, lazygit can only undo things that are recorded in the reflog. That means changes to your working tree or stash aren't covered. Secondly, anything permanent you do like pushing to a remote can't be undone. Thirdly, actions like creating a branch won't be undone, because they're not stored in the reflog.
-If you are mid-rebase, undo/redo is not supported, because the reflog doesn't enough contain information about what specific things have happened inside that rebase. If you want to undo out of a rebase, it's best to abort the rebase (the default keybinding for bringing up rebase options is 'm').
+If you are mid-rebase, undo/redo is not supported, because the reflog doesn't contain enough information about what specific things have happened inside that rebase. If you want to undo out of a rebase, it's best to abort the rebase (the default keybinding for bringing up rebase options is 'm').
Undo/Redo is a new feature so if you find a bug let us know. The worst case scenario is that you'll just need to look at your reflog and manually put yourself back on track.