gitwise-cli 0.24.4__py3-none-any.whl → 0.25.0__py3-none-any.whl
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.
- gitwise/__init__.py +1 -1
- {gitwise_cli-0.24.4.dist-info → gitwise_cli-0.25.0.dist-info}/METADATA +33 -5
- {gitwise_cli-0.24.4.dist-info → gitwise_cli-0.25.0.dist-info}/RECORD +6 -6
- {gitwise_cli-0.24.4.dist-info → gitwise_cli-0.25.0.dist-info}/WHEEL +0 -0
- {gitwise_cli-0.24.4.dist-info → gitwise_cli-0.25.0.dist-info}/entry_points.txt +0 -0
- {gitwise_cli-0.24.4.dist-info → gitwise_cli-0.25.0.dist-info}/licenses/LICENSE +0 -0
gitwise/__init__.py
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitwise-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.25.0
|
|
4
4
|
Summary: Python CLI for optimizing git workflows and Claude Code integration
|
|
5
|
+
Project-URL: Homepage, https://github.com/drzioner/gitwise
|
|
6
|
+
Project-URL: Repository, https://github.com/drzioner/gitwise
|
|
7
|
+
Project-URL: Changelog, https://github.com/drzioner/gitwise/blob/main/CHANGELOG.md
|
|
8
|
+
Project-URL: Issues, https://github.com/drzioner/gitwise/issues
|
|
5
9
|
Author-email: Deiner <drzioner@gmail.com>
|
|
6
10
|
License-Expression: MIT
|
|
7
11
|
License-File: LICENSE
|
|
@@ -54,15 +58,40 @@ gitwise addresses three daily pain points:
|
|
|
54
58
|
|
|
55
59
|
## Install
|
|
56
60
|
|
|
61
|
+
Pick one:
|
|
62
|
+
|
|
63
|
+
**curl | bash** (recommended, auto-installs `uv` if missing):
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
curl -fsSL https://raw.githubusercontent.com/drzioner/gitwise/main/install.sh | bash
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
**uv** (if you already use [uv](https://docs.astral.sh/uv/)):
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
uv tool install gitwise-cli
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
**From source** (development only):
|
|
76
|
+
|
|
57
77
|
```bash
|
|
58
|
-
git clone https://github.com/drzioner/gitwise.git
|
|
59
|
-
|
|
78
|
+
git clone https://github.com/drzioner/gitwise.git
|
|
79
|
+
cd gitwise
|
|
80
|
+
uv sync
|
|
81
|
+
uv run python -m gitwise doctor
|
|
60
82
|
```
|
|
61
83
|
|
|
62
84
|
Update an existing installation:
|
|
63
85
|
|
|
64
86
|
```bash
|
|
65
|
-
gitwise
|
|
87
|
+
uv tool upgrade gitwise-cli # if installed via uv
|
|
88
|
+
# or re-run the curl | bash installer, which always pulls latest
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Uninstall:
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
uv tool uninstall gitwise-cli
|
|
66
95
|
```
|
|
67
96
|
|
|
68
97
|
## Quick Start
|
|
@@ -130,7 +159,6 @@ For all commands, examples, aliases, and JSON usage, see:
|
|
|
130
159
|
| `GITWISE_AGENT=1` | Alias to enable agent output mode |
|
|
131
160
|
| `GITWISE_GIT_TIMEOUT=<seconds>` | Override git subprocess timeout |
|
|
132
161
|
| `GITWISE_WIDTH=<columns>` | Override output width |
|
|
133
|
-
| `GITWISE_BIN_DIR` | Install location (default: `~/.local/bin`) |
|
|
134
162
|
|
|
135
163
|
## Shell Completions
|
|
136
164
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
gitwise/__init__.py,sha256=
|
|
1
|
+
gitwise/__init__.py,sha256=UzzDSO9drE6Vz6mPwbDgZcCweG7eJ2yTtvtDqiaDNog,267
|
|
2
2
|
gitwise/__main__.py,sha256=2GuRJ3LysuDIHrMYryXqJCKFe6EtxgmGwg7nXQEmGyw,2897
|
|
3
3
|
gitwise/_cli_completions.py,sha256=85-aF5I-SFFehbSDvrj22eFb3DYiHiNxpwr6GxW0B4Q,3091
|
|
4
4
|
gitwise/_cli_dispatch.py,sha256=x75GaHWYS_Hcem0XvKVL1cB-dS0Q_d6_u3k00KZk6GU,12150
|
|
@@ -118,8 +118,8 @@ gitwise/share/schemas/v1/input/tag.json,sha256=KmrCyqcJsJU_uDhNba_KYpAkYg7vIlQac
|
|
|
118
118
|
gitwise/share/schemas/v1/input/undo.json,sha256=PRab96r2e1iU2FN8yBV_njgly_-7lm7Vy4KcMh3NMQ4,1406
|
|
119
119
|
gitwise/share/schemas/v1/input/update.json,sha256=OmuSgSp_USg2f45mywnSpxUB0NMSn_lQDLC4yDzCopo,911
|
|
120
120
|
gitwise/share/schemas/v1/input/worktree.json,sha256=rKKOtWyAgARIa-b-Raw7ZNPqKkO7DlPd7PE1c0flRDs,1063
|
|
121
|
-
gitwise_cli-0.
|
|
122
|
-
gitwise_cli-0.
|
|
123
|
-
gitwise_cli-0.
|
|
124
|
-
gitwise_cli-0.
|
|
125
|
-
gitwise_cli-0.
|
|
121
|
+
gitwise_cli-0.25.0.dist-info/METADATA,sha256=-ATzFrsmNWrKhcka9YyfP0LiAyTKBm98XYEW37loeLs,6380
|
|
122
|
+
gitwise_cli-0.25.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
123
|
+
gitwise_cli-0.25.0.dist-info/entry_points.txt,sha256=rGwxSDmUHtzlY6yp7KeMJhRARijXkSE6OKuOJ8PF51E,50
|
|
124
|
+
gitwise_cli-0.25.0.dist-info/licenses/LICENSE,sha256=vfJO-ThMtWhZOD9MsArN2yul1EJmxAXxfeGHKnEk9QQ,1063
|
|
125
|
+
gitwise_cli-0.25.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|