1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-24 08:52:21 +02:00
lazygit/README.md

186 lines
7.1 KiB
Markdown
Raw Normal View History

# lazygit [![CircleCI](https://circleci.com/gh/jesseduffield/lazygit.svg?style=svg)](https://circleci.com/gh/jesseduffield/lazygit) [![codecov](https://codecov.io/gh/jesseduffield/lazygit/branch/master/graph/badge.svg)](https://codecov.io/gh/jesseduffield/lazygit) [![Go Report Card](https://goreportcard.com/badge/github.com/jesseduffield/lazygit)](https://goreportcard.com/report/github.com/jesseduffield/lazygit) [![GolangCI](https://golangci.com/badges/github.com/jesseduffield/lazygit.svg)](https://golangci.com) [![GoDoc](https://godoc.org/github.com/jesseduffield/lazygit?status.svg)](http://godoc.org/github.com/jesseduffield/lazygit) [![GitHub tag](https://img.shields.io/github/tag/jesseduffield/lazygit.svg)]()
2018-08-06 07:42:41 +02:00
A simple terminal UI for git commands, written in Go with the [gocui](https://github.com/jroimartin/gocui 'gocui') library.
2018-06-10 04:49:12 +02:00
2019-11-10 01:07:43 +02:00
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 stepping through each hunk and if a hunk can't be split down any further but contains code you don't want to stage, bad luck? *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!*
2019-11-10 01:02:04 +02:00
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.
2018-06-09 11:30:59 +02:00
![Gif](/docs/resources/lazygit-example.gif)
2018-06-09 11:30:59 +02:00
- [Installation](https://github.com/jesseduffield/lazygit#installation)
- [Usage](https://github.com/jesseduffield/lazygit#usage),
2019-03-22 11:13:48 +02:00
[Keybindings](/docs/keybindings)
- [Cool Features](https://github.com/jesseduffield/lazygit#cool-features)
- [Contributing](https://github.com/jesseduffield/lazygit#contributing)
- [Video Tutorial](https://youtu.be/VDXvbHZYeKY)
2019-11-06 14:18:03 +02:00
- [Rebase Magic Video Tutorial](https://youtu.be/4XaToVut_hs)
- [Twitch Stream](https://www.twitch.tv/jesseduffield)
2018-08-11 01:43:22 +02:00
2019-11-10 00:02:00 +02:00
[<img src="https://i.imgur.com/sVEktDn.png">](https://youtu.be/CPLdltN7wgE)
2019-11-10 01:07:43 +02:00
Github Sponsors is matching all donations dollar-for-dollar for 12 months so if you're feeling generous consider [sponsoring me](https://github.com/sponsors/jesseduffield)
2018-06-10 04:49:12 +02:00
## Installation
2018-08-08 00:49:37 +02:00
2018-08-09 02:46:27 +02:00
### Homebrew
2019-11-10 14:31:19 +02:00
Normally the lazygit formula can be found in the Homebrew core but we suggest you tap our formula to get the frequently updated one. It works with Linux, too.
2019-11-10 14:31:19 +02:00
Tap:
```
brew install jesseduffield/lazygit/lazygit
```
Core:
```
2018-08-09 02:46:27 +02:00
brew install lazygit
2018-08-09 02:46:57 +02:00
```
2018-08-09 02:46:27 +02:00
### Ubuntu
Packages for Ubuntu 16.04, 18.04 and 18.10 are available via [Launchpad PPA](https://launchpad.net/~lazygit-team).
2018-08-16 19:26:43 +02:00
**Release builds**
Built from git tags. Supposed to be more stable.
```sh
sudo add-apt-repository ppa:lazygit-team/release
sudo apt-get update
sudo apt-get install lazygit
```
**Daily builds**
Built from master branch once in 24 hours (or more sometimes).
```sh
sudo add-apt-repository ppa:lazygit-team/daily
sudo apt-get update
sudo apt-get install lazygit
```
2018-08-09 23:17:38 +02:00
### Void Linux
2018-08-09 23:17:38 +02:00
Packages for Void Linux are available in the distro repo
They follow upstream latest releases
```sh
sudo xbps-install -S lazygit
```
### Arch Linux
Packages for Arch Linux are available via 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: https://aur.archlinux.org/packages/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
### Conda
Released versions are available for different platforms, see https://anaconda.org/conda-forge/lazygit
```sh
conda install -c conda-forge lazygit
```
2018-08-09 02:48:57 +02:00
### Binary Release (Windows/Linux/OSX)
You can download a binary release [here](https://github.com/jesseduffield/lazygit/releases).
2018-08-09 02:48:57 +02:00
### Go
2018-08-09 03:07:41 +02:00
```sh
go get github.com/jesseduffield/lazygit
```
2018-08-09 02:48:57 +02:00
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 mistaked for `C:\Go\bin` (which is for Go's own binaries,
not apps like Lazygit).
2018-08-08 00:49:37 +02:00
## Usage
Call `lazygit` in your terminal inside a git repository. If you want, you can
also add an alias for this with `echo "alias lg='lazygit'" >> ~/.zshrc` (or
whichever rc file you're using).
2018-08-09 02:21:45 +02:00
- Basic video tutorial [here](https://youtu.be/VDXvbHZYeKY).
2019-11-06 14:18:03 +02:00
- Rebase Magic tutorial [here](https://youtu.be/4XaToVut_hs)
- List of keybindings
2019-03-22 11:13:48 +02:00
[here](/docs/keybindings).
2019-11-11 12:45:37 +02:00
## 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):
2019-11-11 12:45:37 +02:00
```
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 lazyigt. To override this behaviour you can exit using `shift+Q` rather than just `q`.
2018-08-08 00:49:37 +02:00
2018-06-10 04:49:12 +02:00
## Cool features
- Adding files easily
- Resolving merge conflicts
- Easily check out recent branches
- Scroll through logs/diffs of branches/commits/stash
- Quick pushing/pulling
- Squash down and rename commits
2018-06-10 04:49:12 +02:00
### Resolving merge conflicts
![Gif](/docs/resources/resolving-merge-conflicts.gif)
2018-06-10 04:49:12 +02:00
2019-03-04 11:39:00 +02:00
### Interactive Rebasing
2019-03-04 11:39:00 +02:00
![Interactive Rebasing](/docs/resources/interactive-rebase.png)
2018-06-10 04:52:55 +02:00
2018-08-06 16:07:42 +02:00
## Contributing
We love your input! Please check out the [contributing guide](CONTRIBUTING.md).
2018-08-16 02:37:23 +02:00
For contributor discussion about things not better discussed here in the repo, join the slack channel
[![Slack](/docs/resources/slack_rgb.png)](https://join.slack.com/t/lazygit/shared_invite/enQtNDE3MjIwNTYyMDA0LTM3Yjk3NzdiYzhhNTA1YjM4Y2M4MWNmNDBkOTI0YTE4YjQ1ZmI2YWRhZTgwNjg2YzhhYjg3NDBlMmQyMTI5N2M)
2018-08-06 16:07:42 +02:00
2018-09-23 05:09:54 +02:00
## Donate
2019-11-10 01:17:35 +02:00
If you would like to support the development of lazygit, consider [sponsoring me](https://github.com/sponsors/jesseduffield) (github is matching all donations dollar-for-dollar for 12 months)
2018-09-23 05:09:54 +02:00
2018-06-10 04:49:12 +02:00
## Work in progress
This is still a work in progress so there's still bugs to iron out and as this
is my first project in Go the code could no doubt use an increase in quality,
but I'll be improving on it whenever I find the time. If you have any feedback
feel free to [raise an issue](https://github.com/jesseduffield/lazygit/issues)/[submit a PR](https://github.com/jesseduffield/lazygit/pulls).
2018-08-11 01:43:22 +02:00
## Social
If you want to see what I (Jesse) am up to in terms of development, follow me on
[twitter](https://twitter.com/DuffieldJesse) or watch me program on
[twitch](https://www.twitch.tv/jesseduffield).
2018-09-05 10:44:24 +02:00
## Alternatives
2018-09-05 10:44:24 +02:00
If you find that lazygit doesn't quite satisfy your requirements, these may be a better fit:
2018-09-05 10:44:24 +02:00
- [tig](https://github.com/jonas/tig)