1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-28 09:08:41 +02:00
simple terminal UI for git commands
Go to file
2018-06-10 12:56:38 +10:00
.gitignore update gitignore 2018-06-09 19:06:52 +10:00
branches_panel.go better confirmation panel messages 2018-06-10 11:52:30 +10:00
commits_panel.go better confirmation panel messages 2018-06-10 11:52:30 +10:00
confirmation_panel.go remove y/n options from prompt 2018-06-10 12:55:15 +10:00
files_panel.go better confirmation panel messages 2018-06-10 11:52:30 +10:00
gitcommands.go use log instead of diff for now 2018-06-10 11:36:27 +10:00
gui.go add handler for refreshing files 2018-06-10 11:36:47 +10:00
main.go remove log of directory 2018-06-05 19:32:27 +10:00
merge_panel.go scroll to merge conflict 2018-06-10 11:37:10 +10:00
README.md Update README.md 2018-06-10 12:56:38 +10:00
stash_panel.go better confirmation panel messages 2018-06-10 11:52:30 +10:00
status_panel.go add support for merging 2018-06-09 19:06:33 +10:00
view_helpers.go add support for merging 2018-06-09 19:06:33 +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!

Gif

Installation

go get github.com/jesseduffield/lazygit

then just call lazygit in your terminal inside a git repository

You can 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.