mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
screenshot
This commit is contained in:
parent
b295d733b5
commit
4a596abd6e
3 changed files with 12 additions and 3 deletions
14
README.md
14
README.md
|
|
@ -1,7 +1,12 @@
|
|||
# gitterm
|
||||
terminal ui (tui) frontend for git written in rust
|
||||
|
||||
motivation
|
||||

|
||||
|
||||
## motivation
|
||||
|
||||
I do most of my git usage in a terminal but i frequently found myself using git UIs for some use cases like: index/commit, diff, stash and log
|
||||
Over the last 2 years my go to GUI tool for this was [fork](https://git-fork.com) because it was not bloated, snappy and free. Unfortunately the *free* aspect will change soon and so I decided to build a snappy simple terminal tool
|
||||
|
||||
# todo
|
||||
|
||||
|
|
@ -19,9 +24,12 @@ motivation
|
|||
* [ ] polling in thread
|
||||
* [ ] log view
|
||||
|
||||
# resources
|
||||
# resources (quick links)
|
||||
|
||||
* https://docs.rs/git2/
|
||||
* https://libgit2.org
|
||||
* https://docs.rs/tui/
|
||||
* https://docs.rs/crossterm/
|
||||
* https://docs.rs/crossterm/
|
||||
|
||||
# alternatives
|
||||
|
||||
|
|
|
|||
BIN
assets/main.jpg
Normal file
BIN
assets/main.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 189 KiB |
|
|
@ -143,6 +143,7 @@ impl App {
|
|||
.block(Block::default().title("Diff [d]").borders(Borders::ALL))
|
||||
.alignment(Alignment::Left)
|
||||
.scroll(self.offset)
|
||||
.wrap(true)
|
||||
.render(f, chunks[1]);
|
||||
|
||||
// commands
|
||||
|
|
|
|||
Loading…
Reference in a new issue