diff --git a/README.md b/README.md
index af6e15f1c..53efcc18d 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,8 @@ If you're a mere mortal like me and you're tired of hearing how powerful git is
## Table of contents
+- [Features](#features)
+- [Tutorials](#tutorials)
- [Installation](#installation)
- [Binary releases](#binary-releases)
- [Homebrew](#homebrew)
@@ -55,16 +57,58 @@ If you're a mere mortal like me and you're tired of hearing how powerful git is
- [Configuration](#configuration)
- [Custom pagers](#configuration)
- [Custom commands](#configuration)
-- [Tutorials](#tutorials)
-- [Cool Features](#cool-features)
- [Contributing](#contributing)
- [Donate](#donate)
- [Alternatives](#alternatives)
Lazygit is not my fulltime job but it is a hefty part time job so if you want to support the project please consider [sponsoring me](https://github.com/sponsors/jesseduffield)
+## Features
+
+### Stage individual lines
+
+Press space on the selected line to stage it, or press `v` to start selecting a range of lines. You can also press `a` to select the entirety of the current hunk.
+
+
+
+### Interactive Rebase
+
+Press `e` on a commit to start an interactive rebase on it: causing all above commits to become part of the TODO file. Then squash (`s`), fixup (`f`), drop (`d`), edit (`e`), move up (ctrl+i) or move down (ctrl+j) any of TODO commits, before continuing the rebase by bringing up the rebase options menu with `m` and then selecting `continue`. You can also perform any these actions as a once-off (e.g. pressing `s` on a commit to squash it) without explicitly starting a rebase.
+
+
+
+### Cherry-pick
+
+Press `c` on a commit to copy it and press `v` to paste (cherry-pick) it.
+
+
+
+### Bisect
+
+Press `b` in the commits view to mark a commit as good/bad in order to begin a git bisect.
+
+
+
+### Nuking the working tree
+
+For when you really want to just get rid of anything that shows up when you run `git status` (and yes that includes dirty submodules) [kidpix style](https://www.youtube.com/watch?v=Ur7_A4JusMU), press `shift+d` to bring up the reset options menu and then select the 'nuke' option.
+
+
+
+### Amend an old commit
+
+Pressing `shift+a` on any commit will amend that commit with the currently staged changes (running an interactive rebase in the backkground).
+
+
+
+## Tutorials
+
[
](https://youtu.be/CPLdltN7wgE)
+- [15 Lazygit Features in 15 Minutes](https://youtu.be/CPLdltN7wgE)
+- [Basics Tutorial](https://youtu.be/VDXvbHZYeKY)
+- [Rebase Magic Tutorial](https://youtu.be/4XaToVut_hs)
+
## Installation
[](https://repology.org/project/lazygit/versions)
@@ -297,53 +341,10 @@ If lazygit is missing a feature, there's a good chance you can implement it your
See the [docs](docs/Custom_Command_Keybindings.md)
-## Tutorials
-
-- [Video Tutorial](https://youtu.be/VDXvbHZYeKY)
-- [Rebase Magic Video Tutorial](https://youtu.be/4XaToVut_hs)
-
-## Cool features
-
-- Add files easily
-- Resolve merge conflicts
-- Fuzzy searching
-- Git bisect
-- Amend old commits
-- Slice, dice, squash, and rearrange commits
-- Submodules support
-- diff branches easily
-- Cherry-pick commits like it's copy+paste
-
-### Git Bisect
-
-
-
-### Cherry-pick
-
-
-
-### Interactive Rebase
-
-
-
-### Nuking the working tree
-
-For when you really want to just get rid of anything that shows up when you run `git status` (and yes that includes dirty submodules) [kidpix style](https://www.youtube.com/watch?v=Ur7_A4JusMU)
-
-
-
-### Amend old commit
-
-
-
-### Stage individual lines
-
-
-
## Contributing
We love your input! Please check out the [contributing guide](CONTRIBUTING.md).
-For contributor discussion about things not better discussed here in the repo, join the discord channel
+For contributor discussion about things not better discussed here in the repo, join the [discord channel](https://discord.gg/ehwFt2t4wt)