Issue: #5428 - README.MD not a real help offline The README.md's demo GIFs use relative paths (../assets/) which don't work when viewing the file offline (e.g., from a downloaded release zip). The assets are stored on a separate branch and are not included in releases. This fix adds: - A note at the top of Features section directing users to GitHub for animated demos (best online experience) - Detailed step-by-step "How it works" instructions for each feature section that work offline without images - Additional context like "Quick actions", "Use cases", "Benefits" etc. This makes the README useful offline while maintaining the animated demo experience for online viewers. |
||
|---|---|---|
| .devcontainer | ||
| .github | ||
| .vscode | ||
| cmd | ||
| demo | ||
| docs | ||
| docs-master | ||
| pkg | ||
| schema | ||
| schema-master | ||
| scripts | ||
| test | ||
| vendor | ||
| .codespellrc | ||
| .editorconfig | ||
| .gitattributes | ||
| .gitignore | ||
| .golangci.yml | ||
| .goreleaser.yml | ||
| CODE-OF-CONDUCT.md | ||
| CONTRIBUTING.md | ||
| default.nix | ||
| Dockerfile | ||
| flake.lock | ||
| flake.nix | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| main.go | ||
| Makefile | ||
| README.md | ||
| shell.nix | ||
| VISION.md | ||
Available for macOS and Linux
Sponsors
Maintenance of this project is made possible by all the contributors and sponsors. If you'd like to sponsor this project and have your avatar or company logo appear below click here. 💙
Elevator Pitch
Rant time: You've heard it before, git is powerful, but what good is that power when everything is so damn hard to do? Interactive rebasing requires you to edit a goddamn TODO file in your editor? Are you kidding me? To stage part of a file you need to use a command line program to step through each hunk and if a hunk can't be split down any further but contains code you don't want to stage, you have to edit an arcane patch file by hand? Are you KIDDING me?! Sometimes you get asked to stash your changes when switching branches only to realise that after you switch and unstash that there weren't even any conflicts and it would have been fine to just checkout the branch directly? YOU HAVE GOT TO BE KIDDING ME!
If you're a mere mortal like me and you're tired of hearing how powerful git is when in your daily life it's a powerful pain in your ass, lazygit might be for you.
Table of contents
- Sponsors
- Elevator Pitch
- Table of contents
- Features
- Tutorials
- Installation
- Binary Releases
- Dev container
- Homebrew
- MacPorts
- Void Linux
- Scoop (Windows)
- gah (Linux and Mac OS)
- Arch Linux
- Fedora / Amazon Linux 2023 / CentOS Stream
- Solus Linux
- Debian and Ubuntu
- Funtoo Linux
- Gentoo Linux
- openSUSE
- NixOS
- Flox
- FreeBSD
- Termux
- Conda
- Go
- Chocolatey (Windows)
- Winget (Windows 10 1709 or later)
- Manual
- Usage
- Configuration
- Contributing
- Donate
- FAQ
- Shameless Plug
- 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
Features
Note: For the best experience with animated demonstrations, view this README on GitHub. The feature descriptions below include detailed step-by-step instructions that work offline.
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.
How it works:
- Navigate to the "Files" panel (main panel shows unstaged changes)
- Press
<enter>on a file to view its diff - Use arrow keys to navigate to specific lines
- Press
<space>to stage/unstage the selected line - Press
vto enter visual mode and select a range of lines with arrow keys - Press
<space>on a selected range to stage all lines in that range - Press
ato stage the entire current hunk
Interactive Rebase
Press i to start an interactive rebase. Then squash (s), fixup (f), drop (d), edit (e), move up (ctrl+k) 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.
How it works:
- Navigate to the "Commits" panel
- Press
ito start an interactive rebase (this shows a list of commits from HEAD to the merge base) - Navigate to a commit and press:
sto squash it (combine with the previous commit, keeping both commit messages)fto fixup it (combine with the previous commit, discarding this commit's message)dto drop it (remove the commit entirely)eto edit it (stop at this commit during rebase)ctrl+kto move it up (swap with the commit above)ctrl+jto move it down (swap with the commit below)
- Use
shift+downorshift+upto select a range of commits - Press
mto open the rebase options menu - Select "continue" to apply the rebase
Quick actions: You can also press s or f directly on any commit to squash/fixup without starting an explicit rebase.
Cherry-pick
Press shift+c on a commit to copy it and press shift+v to paste (cherry-pick) it.
How it works:
- Navigate to the "Commits" panel in the branch containing the commit you want
- Navigate to the specific commit you want to cherry-pick
- Press
shift+cto copy (mark) the commit - Switch to the target branch (using the branches panel or checkout)
- Press
shift+vto paste (cherry-pick) the copied commit onto the current branch - Resolve any conflicts if necessary
- Multiple commits can be copied and pasted in sequence
Bisect
Press b in the commits view to mark a commit as good/bad in order to begin a git bisect.
How it works:
- Navigate to the "Commits" panel
- Find a commit where a bug was introduced (you know the current commit is "bad")
- Find an older commit where the bug didn't exist (you know this commit is "good")
- Press
bon a commit to mark it:- Select "mark as bad" for commits that have the bug
- Select "mark as good" for commits that don't have the bug
- Git will automatically narrow down the range by checking commits in between
- Continue marking commits as good/bad until git identifies the problematic commit
- Press
band select "reset bisect" to end the bisect session
Nuke 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, press shift+d to bring up the reset options menu and then select the 'nuke' option.
How it works:
- Press
shift+din the Files panel to open the reset options menu - Select "Nuke working tree" to completely clean the working directory
- This will:
- Discard all unstaged changes
- Remove untracked files
- Reset dirty submodules
- Essentially restore the working tree to match the HEAD commit
- Use with caution - this is destructive and cannot be easily undone
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 background).
How it works:
- Stage the changes you want to add to an old commit (use the Files panel)
- Navigate to the "Commits" panel
- Find the commit you want to amend
- Press
shift+aon that commit - Lazygit will automatically:
- Start an interactive rebase
- Stop at the selected commit
- Amend it with your staged changes
- Continue the rebase
- The commit is updated without affecting subsequent commits' messages
Filter
You can filter a view with /. Here we filter down our branches view and then hit enter to view its commits.
How it works:
- In any panel (Files, Branches, Commits, etc.), press
/to open the filter input - Type your search text (e.g., branch name, commit message, file name)
- The list will be filtered to show only matching items
- Press
<enter>to select a filtered item and view its details - Press
<escape>to clear the filter and show all items - Filters work across all panels: branches, commits, files, remotes, tags, etc.
Invoke a custom command
Lazygit has a very flexible custom command system. In this example a custom command is defined which emulates the built-in branch checkout action.
How it works:
- Custom commands are defined in your lazygit config file
- They can be triggered with custom keybindings
- Commands can operate on selected items (branches, commits, files)
- In this demo, a custom command performs a branch checkout:
- Navigate to the Branches panel
- Select a branch
- Press the custom command keybinding
- Lazygit executes the defined git command
- Custom commands support prompts, menu selections, and shell commands
Worktrees
You can create worktrees to have multiple branches going at once without the need for stashing or creating WIP commits when switching between them. Press w in the branches view to create a worktree from the selected branch and switch to it.
How it works:
- Navigate to the "Branches" panel
- Select the branch you want to create a worktree for
- Press
wto open the worktree options menu - Select "Create worktree from branch"
- Enter the path where the worktree should be created
- Lazygit will:
- Create a new worktree directory
- Checkout the selected branch into that worktree
- Optionally switch to that worktree
- You can work in multiple worktrees simultaneously without stashing
Benefits:
- Work on multiple branches simultaneously
- No need to stash changes when switching contexts
- Each worktree has its own working directory
- Share the same .git directory (saves space)
Rebase magic (custom patches)
You can build a custom patch from an old commit and then remove the patch from the commit, split out a new commit, apply the patch in reverse to the index, and more.
In this example we have a redundant comment that we want to remove from an old commit. We hit <enter> on the commit to view its files, then <enter> on a file to focus the patch, then <space> to add the comment line to our custom patch, and then ctrl+p to view the custom patch options; selecting to remove the patch from the current commit.
Learn more in the Rebase magic Youtube tutorial.
How it works (removing a line from an old commit):
- Navigate to the "Commits" panel
- Press
<enter>on the commit containing the line you want to modify - Press
<enter>on the specific file to view its contents - Navigate to the line(s) you want to remove or change
- Press
<space>to add those lines to a "custom patch" (a temporary holding area) - Press
ctrl+pto open the custom patch options menu - Select "Remove patch from commit" - this removes those lines from that commit
- Lazygit performs an interactive rebase in the background to rewrite history
Other custom patch options:
- Apply patch in reverse (revert the changes)
- Create a new commit from the patch
- Copy patch to clipboard
- Pull patch into index (stage the changes)
Rebase from marked base commit
Say you're on a feature branch that was itself branched off of the develop branch, and you've decided you'd rather be branching off the master branch. You need a way to rebase only the commits from your feature branch. In this demo we check to see which was the last commit on the develop branch, then press shift+b to mark that commit as our base commit, then press r on the master branch to rebase onto it, only bringing across the commits from our feature branch. Then we push our changes with shift+p.
How it works:
- Navigate to the "Commits" panel on your feature branch
- Find the commit that represents the base of your feature branch (e.g., the last commit from develop before you started your feature)
- Press
shift+bon that commit to mark it as the "base commit" - Navigate to the "Branches" panel (or Remotes panel)
- Select the branch you want to rebase onto (e.g., master)
- Press
rto rebase onto that branch - Lazygit will only rebase the commits after your marked base commit
- Press
shift+pto push the rebased commits
Use cases:
- Rebase feature branch onto a different upstream branch
- Move commits to a clean base
- Avoid rebasing commits from other branches
Undo
You can undo the last action by pressing z and redo with ctrl+z. Here we drop a couple of commits and then undo the actions.
Undo uses the reflog which is specific to commits and branches so we can't undo changes to the working tree or stash.
How it works:
- Press
zto undo the last action (undo goes back through the reflog) - Press
ctrl+zto redo (undo an undo) - Works for most git operations:
- Commits
- Branch operations (create, delete, checkout)
- Rebase operations
- Cherry-pick operations
- Reset operations
- Undo history is stored in the git reflog
- Note: Cannot undo working tree changes (unstaged files) or stash operations
When to use:
- Accidentally deleted a branch
- Made a wrong commit
- Rebase went wrong
- Cherry-pick in the wrong place
Commit graph
When viewing the commit graph in an enlarged window (use + and _ to cycle screen modes), the commit graph is shown. Colours correspond to the commit authors, and as you navigate down the graph, the parent commits of the selected commit are highlighted.
How it works:
- Press
+to enlarge the main panel (cycles through screen modes) - The commits view shows a visual graph of commit history
- Each commit is represented as a node in the graph
- Different colors represent different authors
- Lines show the parent-child relationships between commits
- As you navigate through commits, parent commits are highlighted
- Press
_to reduce the panel size
Visual features:
- Branch lines show merge points
- Author colors help track who wrote what
- Navigate complex history visually
- See where branches diverge and merge
Compare two commits
If you press shift+w on a commit (or branch/ref) a menu will open that allows you to mark that commit so that any other commit you select will be diffed against it. Once you've selected the second commit, you'll see the diff in the main view and if you press <enter> you'll see the files of the diff. You can press shift+w to view the diff menu again to see options like reversing the diff direction or exiting diff mode. You can also exit diff mode by pressing <escape>.
How it works:
- Navigate to the "Commits" panel
- Press
shift+won a commit to mark it as the "base" for comparison - Select "Mark as base for comparison" from the menu
- Navigate to another commit
- The main view now shows the diff between the two commits
- Press
<enter>to see the specific file changes in the diff - Press
shift+wagain to see options:- Reverse the diff direction (swap base and comparison)
- Exit diff mode
- Copy diff to clipboard
- Press
<escape>to exit diff mode
Use cases:
- Compare two branches
- See what changed between two versions
- Review changes before a merge
- Find where a bug was introduced
Tutorials
Installation
Most of the above packages are maintained by third parties so be sure to vet them yourself and confirm that the maintainer is a trustworthy looking person who attends local sports games and gives back to their communities with barbeque fundraisers etc
Binary Releases
For Windows, Mac OS(10.12+) or Linux, you can download a binary release here.
Dev container feature
If you want to use lazygit in e.g. one of your GitHub Codespaces, there is a third-party dev container feature based on the binary releases mentioned above.
Homebrew
It works with Linux, too.
brew install lazygit
MacPorts
Latest version built from github releases. Tap:
sudo port install lazygit
Void Linux
Packages for Void Linux are available in the distro repo
They follow upstream latest releases
sudo xbps-install -S lazygit
Scoop (Windows)
You can install lazygit using scoop. It's in the extras bucket:
# Add the extras bucket
scoop bucket add extras
# Install lazygit
scoop install lazygit
gah (Linux and Mac OS)
You can install lazygit using gah:
gah install lazygit
Arch Linux
Packages for Arch Linux are available via pacman and AUR (Arch User Repository).
There are two packages. The stable one which is built with the latest release and the git version which builds from the most recent commit.
- Stable:
sudo pacman -S lazygit - Development: https://aur.archlinux.org/packages/lazygit-git/
Instruction of how to install AUR content can be found here: https://wiki.archlinux.org/index.php/Arch_User_Repository
Fedora / Amazon Linux 2023 / CentOS Stream
Packages for Fedora, Amazon Linux 2023 and CentOS Stream are available via Copr (Cool Other Package Repo).
sudo dnf copr enable dejan/lazygit
sudo dnf install lazygit
These packages are built using the RPM spec file located here: https://codeberg.org/dejan/rpm-lazygit
You should be able to build RPMs for Fedora 41 or older, and other Fedora derivatives using the SRPM (Source RPM) file that you can grab from the latest COPR build.
Fedora / RHEL Derivatives (Terra)
Packages for Fedora and RHEL derivatives are also available from the Terra Repository.
sudo dnf install --nogpgcheck --repofrompath 'terra,https://repos.fyralabs.com/terra$releasever' terra-release
sudo dnf install lazygit
(Install guide for Atomic/EL can be found on their README)
Terra also has lazygit-doc, which contains the contents of the docs folder.
Solus Linux
sudo eopkg install lazygit
Debian and Ubuntu
For Debian 13 "Trixie", Sid, and later, or Ubuntu 25.10 "Questing Quokka" and later:
sudo apt install lazygit
For Debian 12 "Bookworm", Ubuntu 25.04 "Plucky Puffin" and earlier:
LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | \grep -Po '"tag_name": *"v\K[^"]*')
curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/download/v${LAZYGIT_VERSION}/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz"
tar xf lazygit.tar.gz lazygit
sudo install lazygit -D -t /usr/local/bin/
Verify the correct installation of lazygit:
lazygit --version
Funtoo Linux
Funtoo Linux has an autogenerated lazygit package in dev-kit:
sudo emerge dev-vcs/lazygit
Gentoo Linux
Lazygit is not (yet) in main Gentoo portage, however an ebuild is available in GURU overlay
You can either add the overlay to your system and install lazygit as usual:
sudo eselect repository enable guru
sudo emaint sync -r guru
sudo emerge dev-vcs/lazygit
openSUSE
The lazygit package is currently built in devel:languages:go/lazygit.
To install lazygit on openSUSE Tumbleweed run:
sudo zypper ar https://download.opensuse.org/repositories/devel:/languages:/go/openSUSE_Factory/devel:languages:go.repo
sudo zypper ref && sudo zypper in lazygit
To install lazygit on openSUSE Leap run:
source /etc/os-release
sudo zypper ar https://download.opensuse.org/repositories/devel:/languages:/go/$VERSION_ID/devel:languages:go.repo
sudo zypper ref && sudo zypper in lazygit
NixOS
Using lazygit from nixpkgs
On NixOS, lazygit is packaged with nix and distributed via nixpkgs. You can try lazygit without installing it with:
nix-shell -p lazygit
# or with flakes enabled
nix run nixpkgs#lazygit
Or you can add lazygit to your configuration.nix using the environment.systemPackages option.
More details can be found via NixOS search page.
Using the official lazygit flake
This repository includes a nix flake that provides the latest development version and additional development tools:
Run lazygit directly from the repository:
nix run github:jesseduffield/lazygit
# or from a local clone
nix run .
Build lazygit from source:
nix build github:jesseduffield/lazygit
# or from a local clone
nix build .
Development environment: For contributors, the flake provides a development shell with Go toolchain, development tools, and dependencies:
nix develop github:jesseduffield/lazygit
# or from a local clone
nix develop
The development shell includes:
- Go toolchain
- git and make
- Proper environment variables for development
Using in other flakes: The flake also provides an overlay for easy integration into other flake-based projects:
{
inputs.lazygit.url = "github:jesseduffield/lazygit";
outputs = { self, nixpkgs, lazygit }: {
# Use the overlay
nixpkgs.overlays = [ lazygit.overlays.default ];
};
}
Flox
Lazygit can be installed into a Flox environment as follows.
flox install lazygit
More details about Flox can be found on their website.
FreeBSD
pkg install lazygit
Termux
apt install lazygit
Conda
Released versions are available for different platforms, see https://anaconda.org/conda-forge/lazygit
conda install -c conda-forge lazygit
Go
go install github.com/jesseduffield/lazygit@latest
Please note:
If you get an error claiming that lazygit cannot be found or is not defined, you
may need to add ~/go/bin to your $PATH (macOS/Linux), or %HOME%\go\bin
(Windows). Not to be mistaken for C:\Go\bin (which is for Go's own binaries,
not apps like lazygit).
Chocolatey (Windows)
You can install lazygit using Chocolatey:
choco install lazygit
Winget (Windows 10 1709 or later)
You can install lazygit using the winget command in the Windows Terminal with the following command:
winget install -e --id=JesseDuffield.lazygit
Manual
You'll need to install Go
git clone https://github.com/jesseduffield/lazygit.git
cd lazygit
go install
You can also use go run main.go to compile and run in one go (pun definitely intended)
Usage
Call lazygit in your terminal inside a git repository.
$ lazygit
If you want, you can
also add an alias for this with echo "alias lg='lazygit'" >> ~/.zshrc (or
whichever rc file you're using).
Keybindings
You can check out the list of keybindings here.
Changing Directory On Exit
If you change repos in lazygit and want your shell to change directory into that repo on exiting lazygit, add this to your ~/.zshrc (or other rc file):
lg()
{
export LAZYGIT_NEW_DIR_FILE=~/.lazygit/newdir
lazygit "$@"
if [ -f $LAZYGIT_NEW_DIR_FILE ]; then
cd "$(cat $LAZYGIT_NEW_DIR_FILE)"
rm -f $LAZYGIT_NEW_DIR_FILE > /dev/null
fi
}
Then source ~/.zshrc and from now on when you call lg and exit you'll switch directories to whatever you were in inside lazygit. To override this behaviour you can exit using shift+Q rather than just q.
Undo/Redo
See the docs
Configuration
Check out the configuration docs.
Custom Pagers
See the docs
Custom Commands
If lazygit is missing a feature, there's a good chance you can implement it yourself with a custom command!
See the docs
Git flow support
Lazygit supports Gitflow if you have it installed. To understand how the Gitflow model works check out Vincent Driessen's original post explaining it. To view Gitflow options from within Lazygit, press i from within the branches view.
Contributing
We love your input! Please check out the contributing guide. For contributor discussion about things not better discussed here in the repo, join the discord channel
Check out this video walking through the creation of a small feature in lazygit if you want an idea of where to get started.
Debugging Locally
Run lazygit --debug in one terminal tab and lazygit --logs in another to view the program and its log output side by side
Donate
If you would like to support the development of lazygit, consider sponsoring me (github is matching all donations dollar-for-dollar for 12 months)
FAQ
What do the commit colors represent?
- Green: the commit is included in the master branch
- Yellow: the commit is not included in the master branch
- Red: the commit has not been pushed to the upstream branch
Shameless Plug
If you want to see what I (Jesse) am up to in terms of development, follow me on twitter or check out my blog
Alternatives
If you find that lazygit doesn't quite satisfy your requirements, these may be a better fit:




















































































































