git-tui 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +6 -2
- data/VERSION +1 -1
- data/lib/git-tui.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a52726e41ca04efb41cbcfb03fd7dd08bb5572df3dfe0072b0da24634d37bab8
|
4
|
+
data.tar.gz: 1417fd7e80bcbe7aed54f2837eac35253c0bd7ce6df5804929fe79dd3c8cb2ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec2417368128a689675694cebda8202ad2af7e339fd8b6beef989c20b336f50f5a9199f9bf9c3a88c42fa386829d1e2637ca783cb99f74e83c52642347125eca
|
7
|
+
data.tar.gz: e0c7a82ebb70da523a48344a934dbbd7ab32c46f475e7419b24d3a3accf8b3667ba39b0d8f4bb5d04e0af5cb8f0db28fac527b731c26955f8a0c2f810c8f0d61
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
-
# Git-TUI (Git Text-based User Interface)
|
1
|
+
# Git-TUI (Git Text-based User Interface) 0.0.2
|
2
2
|
[](https://badge.fury.io/rb/git-tui)
|
3
3
|
|
4
|
+
This is an unobtrusive Git TUI (Text-based User Interface) that provides quick time-saving interactions only for Git commands that need it (e.g. `git checkout branchname`) while letting developers to continue to use Git from the command line for the rest of the option-less commands like `git pull`, especially given the ability to setup git aliases (e.g. `g pr` for `git pull --rebase`)
|
5
|
+
|
6
|
+
Git-TUI intentionally avoids what some other TUIs do in taking up the whole screen to avoid interrupting the developer completely from the terminal yet only augment their workflow with improved productivity for Git option-heavy commands that benefit from auto-completion (e.g. `git checkout branchname`).
|
7
|
+
|
4
8
|

|
5
9
|
|
6
10
|
Other TUI gems you may be interested in:
|
@@ -25,7 +29,7 @@ These are the commands you need to run in order to select a Ruby and gemset, ins
|
|
25
29
|
|
26
30
|
```
|
27
31
|
rvm use @default # or a different ruby version/gemset like `rvm use ruby-3.1.0@git-tui --create`
|
28
|
-
gem install git-tui
|
32
|
+
gem install git-tui -v0.0.2
|
29
33
|
git-tui-setup
|
30
34
|
```
|
31
35
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/lib/git-tui.rb
CHANGED