Skip to content

Commit 33078af

Browse files
committed
Fix accidental formatting (again πŸ€¦πŸ»β€β™‚οΈ)
1 parent d0ea8f1 commit 33078af

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

Diff for: β€ŽREADME.md

+9-18
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
- Fast and intuitive **keyboard only** control
4747
- Context based help (**no need to memorize** tons of hot-keys)
48-
- Inspect, commit, and amend changes (incl. hooks: _pre-commit_,_commit-msg_,_post-commit_,_prepare-commit-msg_)
48+
- Inspect, commit, and amend changes (incl. hooks: *pre-commit*,*commit-msg*,*post-commit*,*prepare-commit-msg*)
4949
- Stage, unstage, revert and reset files, hunks and lines
5050
- Stashing (save, pop, apply, drop, and inspect)
5151
- Push / Fetch to / from remote
@@ -68,24 +68,24 @@ GitUI provides you with the user experience and comfort of a git GUI but right i
6868

6969
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):
7070

71-
| | Time | Memory (GB) | Binary (MB) | Freezes | Crashes |
72-
| --------- | ----------- | ----------- | ----------- | --------- | --------- |
73-
| `gitui` | **24 s** βœ… | **0.17** βœ… | 10 | **No** βœ… | **No** βœ… |
74-
| `lazygit` | 57 s | 2.6 | 25 | Yes | Sometimes |
75-
| `tig` | 4 m 20 s | 1.3 | **0.6** βœ… | Sometimes | **No** βœ… |
71+
| | Time | Memory (GB) | Binary (MB) | Freezes | Crashes |
72+
| --------- | ---------- | ----------- | ----------- | --------- | --------- |
73+
| `gitui` | **24 s** βœ… | **0.17** βœ… | 10 | **No** βœ… | **No** βœ… |
74+
| `lazygit` | 57 s | 2.6 | 25 | Yes | Sometimes |
75+
| `tig` | 4 m 20 s | 1.3 | **0.6** βœ… | Sometimes | **No** βœ… |
7676

7777
## 4. <a name="roadmap"></a> Road(map) to 1.0 <small><sup>[Top β–²](#table-of-contents)</sup></small>
7878

7979
These are the high level goals before calling out `1.0`:
8080

81-
- visualize branching structure in log tab ([#81](https://github.com/gitui-org/gitui/issues/81))
82-
- interactive rebase ([#32](https://github.com/gitui-org/gitui/issues/32))
81+
* visualize branching structure in log tab ([#81](https://github.com/gitui-org/gitui/issues/81))
82+
* interactive rebase ([#32](https://github.com/gitui-org/gitui/issues/32))
8383

8484
## 5. <a name="limitations"></a> Known Limitations <small><sup>[Top β–²](#table-of-contents)</sup></small>
8585

8686
- no sparse repo support (see [#1226](https://github.com/gitui-org/gitui/issues/1226))
8787
- no git-lfs support (see [#1089](https://github.com/gitui-org/gitui/discussions/1089))
88-
- _credential.helper_ for https needs to be **explicitly** configured (see [#800](https://github.com/gitui-org/gitui/issues/800))
88+
- *credential.helper* for https needs to be **explicitly** configured (see [#800](https://github.com/gitui-org/gitui/issues/800))
8989

9090
Currently, this tool does not fully substitute the _git shell_, however both tools work well in tandem.
9191

@@ -119,7 +119,6 @@ sudo dnf install gitui
119119
```
120120

121121
##### Gentoo
122-
123122
Available in [dm9pZCAq overlay](https://github.com/gentoo-mirror/dm9pZCAq)
124123

125124
```sh
@@ -167,13 +166,10 @@ choco install gitui
167166
##### [Nix](https://search.nixos.org/packages?channel=unstable&show=gitui&from=0&size=50&sort=relevance&query=gitui) (Nix/NixOS)
168167

169168
Nixpkg
170-
171169
```
172170
nix-env -iA nixpkgs.gitui
173171
```
174-
175172
NixOS
176-
177173
```
178174
nix-env -iA nixos.gitui
179175
```
@@ -185,7 +181,6 @@ pkg install gitui
185181
```
186182

187183
##### [Anaconda](https://anaconda.org/conda-forge/gitui)
188-
189184
```
190185
conda install -c conda-forge gitui
191186
```
@@ -226,11 +221,9 @@ see [NIGHTLIES.md](./NIGHTLIES.md)
226221
### Requirements
227222

228223
- Minimum supported `rust`/`cargo` version: `1.70`
229-
230224
- See [Install Rust](https://www.rust-lang.org/tools/install)
231225

232226
- To build openssl dependency (see https://docs.rs/openssl/latest/openssl/)
233-
234227
- perl >= 5.12 (strawberry perl works for windows https://strawberryperl.com/)
235228
- a c compiler (msvc, gcc or clang, cargo will find it)
236229

@@ -241,9 +234,7 @@ see [NIGHTLIES.md](./NIGHTLIES.md)
241234
The simplest way to start playing around with `gitui` is to have `cargo` build and install it with `cargo install gitui --locked`. If you are not familiar with rust and cargo: [Getting Started with Rust](https://doc.rust-lang.org/book/ch01-00-getting-started.html)
242235

243236
### Cargo Features
244-
245237
#### trace-libgit
246-
247238
enable `libgit2` tracing
248239

249240
works if `libgit2` built with `-DENABLE_TRACE=ON`

0 commit comments

Comments
Β (0)