gitpush-tool 0.2.9__tar.gz → 0.3.0__tar.gz
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.
- {gitpush_tool-0.2.9/gitpush_tool.egg-info → gitpush_tool-0.3.0}/PKG-INFO +1 -1
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/README.md +1 -17
- gitpush_tool-0.3.0/gitpush_tool/__init__.py +1 -0
- gitpush_tool-0.3.0/gitpush_tool/cli.py +970 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0/gitpush_tool.egg-info}/PKG-INFO +1 -1
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/setup.py +1 -1
- gitpush_tool-0.2.9/gitpush_tool/__init__.py +0 -1
- gitpush_tool-0.2.9/gitpush_tool/cli.py +0 -317
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/LICENSE +0 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/MANIFEST.in +0 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/gitpush_tool/__doc__.py +0 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/gitpush_tool.egg-info/SOURCES.txt +0 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/gitpush_tool.egg-info/dependency_links.txt +0 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/gitpush_tool.egg-info/entry_points.txt +0 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/gitpush_tool.egg-info/top_level.txt +0 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/pyproject.toml +0 -0
- {gitpush_tool-0.2.9 → gitpush_tool-0.3.0}/setup.cfg +0 -0
|
@@ -20,22 +20,6 @@ A supercharged Git CLI tool that simplifies repository creation and pushing with
|
|
|
20
20
|
pip install gitpush-tool
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
### Prerequisites
|
|
24
|
-
|
|
25
|
-
- GitHub CLI (gh)
|
|
26
|
-
- Git
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
# Install GitHub CLI
|
|
30
|
-
# macOS
|
|
31
|
-
brew install gh
|
|
32
|
-
|
|
33
|
-
# Windows
|
|
34
|
-
winget install --id GitHub.cli
|
|
35
|
-
|
|
36
|
-
# Linux (Debian/Ubuntu)
|
|
37
|
-
sudo apt install gh
|
|
38
|
-
```
|
|
39
23
|
|
|
40
24
|
## Usage 🛠️
|
|
41
25
|
|
|
@@ -179,4 +163,4 @@ Contributions welcome! Please follow these steps:
|
|
|
179
163
|
|
|
180
164
|
MIT - See LICENSE for details.
|
|
181
165
|
|
|
182
|
-
<center>✨ <strong>Happy Coding!</strong> ✨</center>
|
|
166
|
+
<center>✨ <strong>Happy Coding!</strong> ✨</center>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.0"
|