1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-04 03:48:07 +02:00
simple terminal UI for git commands
Go to file
Jesse Duffield 6126ddd373 fix spacing
2018-08-06 00:04:11 +10:00
test better handling of merge conflicts 2018-07-21 17:48:27 +10:00
.gitignore better handling of branches and untracked files 2018-07-21 15:51:18 +10:00
branches_panel.go add navigate option to every panels options 2018-07-29 10:40:54 +10:00
commits_panel.go add navigate option to every panels options 2018-07-29 10:40:54 +10:00
confirmation_panel.go basic support for overlapping panels 2018-08-05 22:00:02 +10:00
files_panel.go add refresh option to files panel 2018-08-05 21:28:34 +10:00
gitcommands.go fix spacing 2018-08-06 00:04:11 +10:00
gui.go controlling overlapping edges with a single flag 2018-08-05 22:18:59 +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 update options 2018-07-22 12:58:09 +10:00
README.md add link to go installation guide in README 2018-08-05 18:46:17 +10:00
stash_panel.go add navigate option to every panels options 2018-07-29 10:40:54 +10:00
status_panel.go add support for merging 2018-06-09 19:06:33 +10:00
view_helpers.go support carriage returns for windows machines 2018-08-05 17:13:12 +10:00

lazygit

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)

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

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.