You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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):
42
56
@@ -46,13 +60,24 @@ For a [RustBerlin meetup presentation](https://youtu.be/rpilJV-eIVw?t=5334) ([sl
46
60
|`lazygit`| 57 s | 2.6 | 16 | Yes | Sometimes |
47
61
|`tig`| 4 m 20 s | 1.3 |**0.6** ✅ | Sometimes |**No** ✅ |
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.
52
66
53
67
Over the last 2 years my go-to GUI tool for this was [fork](https://git-fork.com) because it was snappy, free, and not bloated. Unfortunately the _free_ part will [change soon](https://github.com/ForkIssues/TrackerWin/issues/571) and so I decided to build a fast and simple terminal tool to help with features I use the most.
54
68
55
-
# Known Limitations
69
+
## 4. <aname="roadmap"></a> Road(map) to 1.0 <small><sup>[Top ▲](#table-of-contents)</sup></small>
70
+
71
+
These are the high level goals before calling out `1.0`:
72
+
73
+
* merging with conflicts ([#485](https://github.com/extrawurst/gitui/issues/485))
* visualize branching structure in log tab ([#81](https://github.com/extrawurst/gitui/issues/81))
79
+
80
+
## 5. <aname="limitations"></a> Known Limitations <small><sup>[Top ▲](#table-of-contents)</sup></small>
56
81
57
82
- no support for conflict resolution yet (see [#485](https://github.com/extrawurst/gitui/issues/485))
58
83
- no support for [bare repositories](https://git-scm.com/book/en/v2/Git-on-the-Server-Getting-Git-on-a-Server) (see [#100](https://github.com/extrawurst/gitui/issues/100))
@@ -64,7 +89,7 @@ Currently, this tool does not fully substitute the _git shell_, however both too
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.
0 commit comments