gitui/README.md

223 lines
8.3 KiB
Markdown
Raw Normal View History

2020-04-03 17:47:30 +03:00
<h1 align="center">
2020-06-08 21:20:52 +03:00
<img width="300px" src="assets/logo.png" />
2020-03-24 23:40:19 +03:00
2020-07-08 19:52:12 +03:00
[![CI][s0]][l0] [![crates][s1]][l1] ![MIT][s2] [![UNSAFE][s3]][l3] [![ITCH][s4]][l4] [![DISC][s5]][l5] [![TWEET][s6]][l6]
2020-04-03 17:47:30 +03:00
</h1>
2020-03-31 12:41:54 +03:00
2020-03-26 19:34:51 +03:00
[s0]: https://github.com/extrawurst/gitui/workflows/CI/badge.svg
2020-07-04 16:47:06 +03:00
[l0]: https://github.com/extrawurst/gitui/actions
2020-03-24 23:40:19 +03:00
[s1]: https://img.shields.io/crates/v/gitui.svg
[l1]: https://crates.io/crates/gitui
2020-03-23 16:59:46 +03:00
[s2]: https://img.shields.io/badge/license-MIT-blue.svg
2020-04-10 11:52:31 +03:00
[s3]: https://img.shields.io/badge/unsafe-forbidden-success.svg
[l3]: https://github.com/rust-secure-code/safety-dance/
2020-05-07 18:32:33 +03:00
[s4]: https://img.shields.io/badge/itch.io-ok-green
[l4]: https://extrawurst.itch.io/gitui
2020-06-18 11:27:55 +03:00
[s5]: https://img.shields.io/discord/723083834811220028.svg?logo=chat
2020-06-20 10:27:12 +03:00
[l5]: https://discord.gg/7TGFfuq
2020-07-08 19:52:12 +03:00
[s6]: https://img.shields.io/twitter/follow/extrawurst?label=follow&style=social
[l6]: https://twitter.com/intent/follow?screen_name=extrawurst
2020-03-23 16:59:46 +03:00
2021-05-30 11:21:33 +03:00
<h5 align="center">GitUI provides you with the comfort of a git GUI but right in your terminal</h1>
2020-03-16 19:20:28 +03:00
2021-04-12 00:06:39 +03:00
![](demo.gif)
2020-03-18 02:58:31 +03:00
2021-04-21 15:33:14 +03:00
## <a name="table-of-contents"></a> Table of Contents
1. [Features](#features)
2021-05-30 11:21:33 +03:00
2. [Motivation](#motivation)
3. [Benchmarks](#bench)
2021-04-21 15:33:14 +03:00
4. [Roadmap](#roadmap)
5. [Limitations](#limitations)
6. [Installation](#installation)
7. [Build](#build)
2022-04-24 19:58:50 +03:00
8. [FAQs](#faqs)
9. [Diagnostics](#diagnostics)
10. [Color Theme](#theme)
11. [Key Bindings](#bindings)
12. [Sponsoring](#sponsoring)
13. [Inspiration](#inspiration)
2021-04-21 15:33:14 +03:00
## 1. <a name="features"></a> Features <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-05-27 15:03:21 +03:00
- Fast and intuitive **keyboard only** control
- Context based help (**no need to memorize** tons of hot-keys)
- Inspect, commit, and amend changes (incl. hooks: _pre-commit_,_commit-msg_,_post-commit_)
2021-03-12 14:04:37 +03:00
- Stage, unstage, revert and reset files, hunks and lines
2021-04-11 18:32:16 +03:00
- Stashing (save, pop, apply, drop, and inspect)
2021-03-01 16:31:12 +03:00
- Push/Fetch to/from remote
2021-04-06 19:58:13 +03:00
- Branch List (create, rename, delete, checkout, remotes)
- Browse commit log, diff committed changes
- Scalable terminal UI layout
- Async git API for fluid control
2020-05-27 15:00:24 +03:00
2021-05-30 11:21:33 +03:00
## 2. <a name="motivation"></a> Motivation <small><sup>[Top ▲](#table-of-contents)</sup></small>
I do most of my git work in a terminal but I frequently found myself using git GUIs for some use-cases like: index, commit, diff, stash, blame and log.
Unfortunately popular git GUIs all fail on giant repositories or become unresponsive and unusable.
GitUI provides you with the user experience and comfort of a git GUI but right in your terminal while being portable, fast, free and opensource.
## 3. <a name="bench"></a> Benchmarks <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-05-27 15:00:24 +03:00
2020-06-17 18:05:34 +03:00
For a [RustBerlin meetup presentation](https://youtu.be/rpilJV-eIVw?t=5334) ([slides](https://github.com/extrawurst/gitui-presentation)) I compared `lazygit`,`tig` and `gitui` by parsing the entire Linux git repository (which contains over 900k commits):
2020-04-10 15:27:27 +03:00
2021-05-12 16:29:56 +03:00
| | Time | Memory (GB) | Binary (MB) | Freezes | Crashes |
| --------- | ---------- | ----------- | ----------- | --------- | --------- |
| `gitui` | **24 s** ✅ | **0.17** ✅ | 1.4 | **No** ✅ | **No** ✅ |
| `lazygit` | 57 s | 2.6 | 16 | Yes | Sometimes |
| `tig` | 4 m 20 s | 1.3 | **0.6** ✅ | Sometimes | **No** ✅ |
2020-04-10 15:27:27 +03:00
2021-04-21 15:33:14 +03:00
## 4. <a name="roadmap"></a> Road(map) to 1.0 <small><sup>[Top ▲](#table-of-contents)</sup></small>
These are the high level goals before calling out `1.0`:
* log search (commit, author, sha) ([#449](https://github.com/extrawurst/gitui/issues/449),[#429](https://github.com/extrawurst/gitui/issues/429))
* visualize branching structure in log tab ([#81](https://github.com/extrawurst/gitui/issues/81))
2021-06-06 11:20:34 +03:00
* notify-based change detection ([#1](https://github.com/extrawurst/gitui/issues/1))
2021-07-12 15:36:41 +03:00
* interactive rebase ([#32](https://github.com/extrawurst/gitui/issues/32))
2021-09-04 14:26:50 +03:00
* popup history and back button ([#846](https://github.com/extrawurst/gitui/issues/846))
2022-01-22 17:12:21 +03:00
* submodule support ([#1087](https://github.com/extrawurst/gitui/issues/1087))
2021-04-21 15:33:14 +03:00
## 5. <a name="limitations"></a> Known Limitations <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-06-16 18:00:32 +03:00
- no support for GPG signing (see [#97](https://github.com/extrawurst/gitui/issues/97))
2022-01-22 18:47:47 +03:00
- no git-lfs support (see [#1089](https://github.com/extrawurst/gitui/discussions/1089))
2022-01-28 01:37:20 +03:00
- *credential.helper* for https needs to be **explicitly** configured (see [#800](https://github.com/extrawurst/gitui/issues/800))
2020-06-16 18:00:32 +03:00
Currently, this tool does not fully substitute the _git shell_, however both tools work well in tandem.
2020-06-16 18:00:32 +03:00
2021-05-31 21:31:20 +03:00
The priorities for `gitui` are on features that are making me mad when done on the _git shell_, like stashing, staging lines or hunks. Eventually, I will be able to work on making `gitui` a one stop solution - but for that I need help - this is just a spare time project for now.
2020-06-16 18:00:32 +03:00
All support is welcomed! Sponsors as well! ❤️
2020-06-16 18:00:32 +03:00
2021-04-21 15:33:14 +03:00
## 6. <a name="installation"></a> Installation <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-06-16 18:00:32 +03:00
For the time being this product is in alpha and is not considered production ready. However, for personal use it is reasonably stable and is being used while developing itself.
2020-04-10 15:27:27 +03:00
### [Arch Linux](https://archlinux.org/packages/community/x86_64/gitui/)
2020-05-30 07:55:19 +03:00
```sh
pacman -S gitui
2020-05-30 07:55:19 +03:00
```
### Fedora
2020-04-28 16:51:24 +03:00
2020-05-28 22:25:34 +03:00
```sh
sudo dnf install gitui
```
2020-04-28 16:51:24 +03:00
2020-11-17 18:45:58 +03:00
### Gentoo
Available in [dm9pZCAq overlay](https://github.com/gentoo-mirror/dm9pZCAq)
```sh
sudo eselect repository enable dm9pZCAq
sudo emerge --sync dm9pZCAq
sudo emerge dev-vcs/gitui::dm9pZCAq
```
### Homebrew (macOS)
2020-04-10 15:27:27 +03:00
```sh
2020-06-16 22:05:34 +03:00
brew install gitui
2020-04-10 15:27:27 +03:00
```
### [Scoop](https://github.com/ScoopInstaller/Main/blob/master/bucket/gitui.json) (Windows)
```
scoop install gitui
```
### [Chocolatey](https://chocolatey.org/packages/gitui) (Windows)
```
choco install gitui
```
2021-02-25 19:31:36 +03:00
### [Nix](https://search.nixos.org/packages?channel=unstable&show=gitui&from=0&size=50&sort=relevance&query=gitui) (Nix/NixOS)
Nixpkg
```
nix-env -iA nixpkgs.gitui
```
NixOS
```
nix-env -iA nixos.gitui
```
### [Termux](https://github.com/termux/termux-packages/tree/master/packages/gitui) (Android)
```
pkg install gitui
```
## Release Binaries
2020-05-28 22:25:34 +03:00
[Available for download in releases](https://github.com/extrawurst/gitui/releases)
2020-05-28 22:25:34 +03:00
Binaries available for:
2020-03-20 12:37:35 +03:00
- Linux
- macOS
- Windows
2020-03-20 12:37:35 +03:00
2021-04-21 15:33:14 +03:00
## 7. <a name="build"></a> Build <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-03-20 12:37:35 +03:00
### Requirements
2020-03-24 23:34:11 +03:00
2022-03-08 19:32:23 +03:00
- Minimum supported `rust`/`cargo` version: `1.50`
- See [Install Rust](https://www.rust-lang.org/tools/install)
2020-03-20 04:12:19 +03:00
### Cargo Install
2020-03-20 04:12:19 +03:00
2021-08-21 16:34:50 +03:00
The simplest way to start playing around with `gitui` is to have `cargo` build and install it with `cargo install gitui`. If you are not familiar with rust and cargo: [Getting Started with Rust](https://doc.rust-lang.org/book/ch01-00-getting-started.html)
2021-10-13 16:32:17 +03:00
### Cargo Features
#### trace-libgit
enable `libgit2` tracing
works if `libgit2` builded with `-DENABLE_TRACE=ON`
this feature enabled by default, to disable: `cargo install --no-default-features`
2020-03-20 04:12:19 +03:00
2022-04-24 19:58:50 +03:00
## 8. <a name="faqs"></a> FAQs <small><sup>[Top ▲](#table-of-contents)</sup></small>
see [FAQs page](./FAQ.md)
## 9. <a name="diagnostics"></a> Diagnostics <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-03-20 04:12:19 +03:00
To run with logging enabled run `gitui -l`.
This will log to:
- macOS: `$HOME/Library/Caches/gitui/gitui.log`
- Linux using `XDG`: `$XDG_CACHE_HOME/gitui/gitui.log`
- Linux: `$HOME/.cache/gitui/gitui.log`
- Windows: `%LOCALAPPDATA%/gitui/gitui.log`
2022-04-24 19:58:50 +03:00
## 10. <a name="theme"></a> Color Theme <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-05-20 13:00:17 +03:00
![](assets/light-theme.png)
`gitui` should automatically work on both light and dark terminal themes.
However, you can customize everything to your liking: See [Themes](THEMES.md).
2022-04-24 19:58:50 +03:00
## 11. <a name="bindings"></a> Key Bindings <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-08-30 13:09:06 +03:00
The key bindings can be customized: See [Key Config](KEY_CONFIG.md) on how to set them to `vim`-like bindings.
2022-04-24 19:58:50 +03:00
## 12. <a name="sponsoring"></a> Sponsoring <small><sup>[Top ▲](#table-of-contents)</sup></small>
2021-04-27 14:24:45 +03:00
[![github](https://img.shields.io/badge/-GitHub%20Sponsors-fafbfc?logo=GitHub%20Sponsors)](https://github.com/sponsors/extrawurst)
2022-04-24 19:58:50 +03:00
## 13. <a name="inspiration"></a> Inspiration <small><sup>[Top ▲](#table-of-contents)</sup></small>
2020-03-18 02:58:31 +03:00
- [lazygit](https://github.com/jesseduffield/lazygit)
- [tig](https://github.com/jonas/tig)
- [GitUp](https://github.com/git-up/GitUp)
- It would be nice to come up with a way to have the map view available in a terminal tool
2020-10-10 12:45:56 +03:00
- [git-brunch](https://github.com/andys8/git-brunch)