1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-26 09:00:57 +02:00
simple terminal UI for git commands
Go to file
2018-08-07 22:53:38 +10:00
docs make push keybinding more explicit 2018-08-07 08:27:08 +10:00
test better handling of merge conflicts 2018-07-21 17:48:27 +10:00
vendor prune unnecessary stuff 2018-08-06 12:24:01 +10:00
.gitignore better handling of branches and untracked files 2018-07-21 15:51:18 +10:00
.travis.yml if you had one shot 2018-08-07 22:53:29 +10:00
branches_panel.go handle error from git log that arises from lack of tracking 2018-08-07 12:49:31 +10:00
CODE-OF-CONDUCT.md It appears that markdown files are better handeled by GitHub with extensions. 2018-08-07 14:38:58 +02:00
commits_panel.go apply gofmt -s -w 2018-08-06 07:37:14 +02:00
confirmation_panel.go Merge pull request #29 from antham/master 2018-08-06 18:35:54 +10:00
CONTRIBUTING.md It appears that markdown files are better handeled by GitHub with extensions. 2018-08-07 14:38:58 +02:00
files_panel.go fix: use createErrorPanel in handleIgnoreFile 2018-08-07 19:04:41 +08:00
gitcommands.go rename recency to prefix 2018-08-07 19:32:25 +10:00
Gopkg.lock use dep 2018-08-06 00:38:38 +10:00
Gopkg.toml prune unnecessary stuff 2018-08-06 12:24:01 +10:00
gui.go invert platform check 2018-08-07 14:01:41 +10:00
LICENSE Create LICENSE 2018-08-05 12:32:37 +10:00
main.go better handling of branches and untracked files 2018-07-21 15:51:18 +10:00
merge_panel.go support more merge conflict headers 2018-08-07 10:41:14 +10:00
README.md Merge pull request #65 from ponsfrilus/ponsfrilus/coc-cg 2018-08-07 22:46:43 +10:00
stash_panel.go add navigate option to every panels options 2018-07-29 10:40:54 +10:00
status_panel.go apply gofmt -s -w 2018-08-06 07:37:14 +02:00
view_helpers.go support carriage returns for windows machines 2018-08-05 17:13:12 +10:00

lazygit Go Report Card

A simple terminal UI for git commands, written in Go with the gocui library.

Are YOU tired of typing every git command directly into the terminal, but you're too stubborn to use Sourcetree because you'll never forgive Atlassian for making Jira? This is the app for you!

Tutorial

Gif

Installation

In a terminal call this command: go get github.com/jesseduffield/lazygit (if you don't have Go installed, you can follow the installation guide here.

Then just 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).

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)

Ubuntu

Packages for Ubuntu 16.04 and up are available via Launchpad PPA.

They are built daily, straight from master branch.

sudo add-apt-repository ppa:lazygit-team/daily
sudo apt-get update
sudo apt-get install lazygit

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

Resolving merge conflicts

Gif

Viewing commit diffs

Viewing Commit Diffs

Docs

Keybindings

Milestones

Contributing

We love your input! Please check out the contributing guide.

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/submit a PR.