aarushlohit-git 1.0.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.
- aarushlohit_git-1.0.0/LICENSE +21 -0
- aarushlohit_git-1.0.0/MANIFEST.in +7 -0
- aarushlohit_git-1.0.0/PKG-INFO +211 -0
- aarushlohit_git-1.0.0/README.md +172 -0
- aarushlohit_git-1.0.0/aarushlohit_git.egg-info/PKG-INFO +211 -0
- aarushlohit_git-1.0.0/aarushlohit_git.egg-info/SOURCES.txt +29 -0
- aarushlohit_git-1.0.0/aarushlohit_git.egg-info/dependency_links.txt +1 -0
- aarushlohit_git-1.0.0/aarushlohit_git.egg-info/entry_points.txt +2 -0
- aarushlohit_git-1.0.0/aarushlohit_git.egg-info/requires.txt +2 -0
- aarushlohit_git-1.0.0/aarushlohit_git.egg-info/top_level.txt +1 -0
- aarushlohit_git-1.0.0/requirements.txt +2 -0
- aarushlohit_git-1.0.0/setup.cfg +4 -0
- aarushlohit_git-1.0.0/setup.py +56 -0
- aarushlohit_git-1.0.0/vibe/.aaru_fastfetch.jsonc +94 -0
- aarushlohit_git-1.0.0/vibe/__init__.py +12 -0
- aarushlohit_git-1.0.0/vibe/aaru_cli.py +276 -0
- aarushlohit_git-1.0.0/vibe/ascii-profile/ascii-art.txt +55 -0
- aarushlohit_git-1.0.0/vibe/command_registry.py +39 -0
- aarushlohit_git-1.0.0/vibe/commands/__init__.py +5 -0
- aarushlohit_git-1.0.0/vibe/commands/branch.py +68 -0
- aarushlohit_git-1.0.0/vibe/commands/clone.py +35 -0
- aarushlohit_git-1.0.0/vibe/commands/info.py +93 -0
- aarushlohit_git-1.0.0/vibe/commands/init.py +25 -0
- aarushlohit_git-1.0.0/vibe/commands/remote.py +244 -0
- aarushlohit_git-1.0.0/vibe/commands/setup.py +57 -0
- aarushlohit_git-1.0.0/vibe/commands/stash.py +55 -0
- aarushlohit_git-1.0.0/vibe/commands/status.py +15 -0
- aarushlohit_git-1.0.0/vibe/commands/workflow.py +52 -0
- aarushlohit_git-1.0.0/vibe/config.py +0 -0
- aarushlohit_git-1.0.0/vibe/git_wrapper.py +23 -0
- aarushlohit_git-1.0.0/vibe/ui.py +9 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 aarushlohit
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aarushlohit_git
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A Clean & Powerful Git Workflow Engine
|
|
5
|
+
Home-page: https://github.com/aarushlohit/GIT_PROTOCOL
|
|
6
|
+
Author: aarushlohit
|
|
7
|
+
Author-email: aarushlohit@users.noreply.github.com
|
|
8
|
+
Project-URL: Bug Reports, https://github.com/aarushlohit/GIT_PROTOCOL/issues
|
|
9
|
+
Project-URL: Source, https://github.com/aarushlohit/GIT_PROTOCOL
|
|
10
|
+
Project-URL: Zairok App, https://zairok.web.app
|
|
11
|
+
Keywords: git workflow cli version-control productivity
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: typer>=0.9.0
|
|
26
|
+
Requires-Dist: click>=8.0.0
|
|
27
|
+
Dynamic: author
|
|
28
|
+
Dynamic: author-email
|
|
29
|
+
Dynamic: classifier
|
|
30
|
+
Dynamic: description
|
|
31
|
+
Dynamic: description-content-type
|
|
32
|
+
Dynamic: home-page
|
|
33
|
+
Dynamic: keywords
|
|
34
|
+
Dynamic: license-file
|
|
35
|
+
Dynamic: project-url
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: requires-python
|
|
38
|
+
Dynamic: summary
|
|
39
|
+
|
|
40
|
+
# 🚀 AARU CLI
|
|
41
|
+
|
|
42
|
+
**A Clean & Powerful Git Workflow Engine**
|
|
43
|
+
|
|
44
|
+
[](https://www.python.org/downloads/)
|
|
45
|
+
[](LICENSE)
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## ✨ Created by
|
|
50
|
+
|
|
51
|
+
- 👤 **Author**: aarushlohit
|
|
52
|
+
- 🐙 **GitHub**: [github.com/aarushlohit](https://github.com/aarushlohit)
|
|
53
|
+
- 🌐 **Project**: [Zairok App - zairok.web.app](https://zairok.web.app)
|
|
54
|
+
- 📸 **Instagram**: [@aarushlohit_01](https://instagram.com/aarushlohit_01)
|
|
55
|
+
- 🖼️ **Avatar**: [avatars.githubusercontent.com/u/141929019](https://avatars.githubusercontent.com/u/141929019)
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 📦 Installation
|
|
60
|
+
|
|
61
|
+
### Install from source
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
# Clone the repository
|
|
65
|
+
git clone https://github.com/aarushlohit/GIT_PROTOCOL.git
|
|
66
|
+
cd GIT_PROTOCOL
|
|
67
|
+
|
|
68
|
+
# Install the package
|
|
69
|
+
pip install -e .
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### Install from PyPI
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
pip install aarushlohit_git
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## 🚀 Quick Start
|
|
81
|
+
|
|
82
|
+
After installation, you can use `aaru` command from anywhere:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
# Show banner and info
|
|
86
|
+
aaru aaru
|
|
87
|
+
|
|
88
|
+
# Initialize a repository
|
|
89
|
+
aaru init
|
|
90
|
+
|
|
91
|
+
# Save changes
|
|
92
|
+
aaru save "my commit message"
|
|
93
|
+
|
|
94
|
+
# Sync with remote
|
|
95
|
+
aaru sync
|
|
96
|
+
|
|
97
|
+
# Get help
|
|
98
|
+
aaru --help
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## 📖 Commands
|
|
104
|
+
|
|
105
|
+
### 🟢 Repository Setup
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
aaru init # Initialize a Git repository with .aaru workspace
|
|
109
|
+
aaru clone <repo_url> # Clone a repository and set up .aaru
|
|
110
|
+
aaru config # List current Git configuration
|
|
111
|
+
aaru config-user # Configure Git user name and email
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### 🔵 Daily Workflow
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
aaru status # Show repository status
|
|
118
|
+
aaru save <message> # Stage all changes and commit
|
|
119
|
+
aaru history # Show commit graph
|
|
120
|
+
aaru diff # Show unstaged changes
|
|
121
|
+
aaru undo # Soft-undo last commit
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### 🟡 Branch Management
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
aaru create <branch> # Create and switch to a new branch
|
|
128
|
+
aaru switch <branch> # Switch to an existing branch
|
|
129
|
+
aaru delete <branch> # Delete a branch (safely)
|
|
130
|
+
aaru branches # List all branches
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
### 🟣 Remote Operations
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
aaru send # Push current branch to remote
|
|
137
|
+
aaru update # Fetch all remotes
|
|
138
|
+
aaru sync # Pull and push (two-way sync)
|
|
139
|
+
aaru add-upstream <url> # Add upstream remote for forks
|
|
140
|
+
aaru fork-sync # Sync fork with upstream
|
|
141
|
+
aaru fork-sync --no-push # Pull from upstream without pushing
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### 🔴 Pull Request Tools
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
aaru checkout-pr <number> # Checkout a PR locally for testing
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### 🟠 Stash Tools
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
aaru stash # Stash current changes
|
|
154
|
+
aaru stash-pop # Apply and remove most recent stash
|
|
155
|
+
aaru stash-list # List all stashed changesets
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### ⚫ Git Passthrough
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
aaru raw -- <any git command> # Pass any command directly to Git
|
|
162
|
+
|
|
163
|
+
# Examples:
|
|
164
|
+
aaru raw -- log --oneline -10
|
|
165
|
+
aaru raw -- cherry-pick abc123
|
|
166
|
+
aaru raw -- rebase -i HEAD~3
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## 🎯 Features
|
|
172
|
+
|
|
173
|
+
- ✅ Clean, intuitive command names
|
|
174
|
+
- ✅ Safe operations with confirmations
|
|
175
|
+
- ✅ Beautiful colored output
|
|
176
|
+
- ✅ Fork workflow support
|
|
177
|
+
- ✅ PR checkout for testing
|
|
178
|
+
- ✅ Full Git compatibility via `raw` command
|
|
179
|
+
- ✅ Custom `.aaru` workspace tracking
|
|
180
|
+
- ✅ Cross-platform support
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## 🛠️ Requirements
|
|
185
|
+
|
|
186
|
+
- Python 3.8+
|
|
187
|
+
- Git 2.0+
|
|
188
|
+
- typer
|
|
189
|
+
- click
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## 📄 License
|
|
194
|
+
|
|
195
|
+
MIT License - See LICENSE file for details
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## 🤝 Contributing
|
|
200
|
+
|
|
201
|
+
Contributions are welcome! Feel free to open issues or submit pull requests.
|
|
202
|
+
|
|
203
|
+
---
|
|
204
|
+
|
|
205
|
+
## 🌟 Show Your Support
|
|
206
|
+
|
|
207
|
+
If you find AARU CLI helpful, please give it a ⭐ on [GitHub](https://github.com/aarushlohit/GIT_PROTOCOL)!
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
**Made with ❤️ by aarushlohit**
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# 🚀 AARU CLI
|
|
2
|
+
|
|
3
|
+
**A Clean & Powerful Git Workflow Engine**
|
|
4
|
+
|
|
5
|
+
[](https://www.python.org/downloads/)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ✨ Created by
|
|
11
|
+
|
|
12
|
+
- 👤 **Author**: aarushlohit
|
|
13
|
+
- 🐙 **GitHub**: [github.com/aarushlohit](https://github.com/aarushlohit)
|
|
14
|
+
- 🌐 **Project**: [Zairok App - zairok.web.app](https://zairok.web.app)
|
|
15
|
+
- 📸 **Instagram**: [@aarushlohit_01](https://instagram.com/aarushlohit_01)
|
|
16
|
+
- 🖼️ **Avatar**: [avatars.githubusercontent.com/u/141929019](https://avatars.githubusercontent.com/u/141929019)
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## 📦 Installation
|
|
21
|
+
|
|
22
|
+
### Install from source
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Clone the repository
|
|
26
|
+
git clone https://github.com/aarushlohit/GIT_PROTOCOL.git
|
|
27
|
+
cd GIT_PROTOCOL
|
|
28
|
+
|
|
29
|
+
# Install the package
|
|
30
|
+
pip install -e .
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Install from PyPI
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pip install aarushlohit_git
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 🚀 Quick Start
|
|
42
|
+
|
|
43
|
+
After installation, you can use `aaru` command from anywhere:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
# Show banner and info
|
|
47
|
+
aaru aaru
|
|
48
|
+
|
|
49
|
+
# Initialize a repository
|
|
50
|
+
aaru init
|
|
51
|
+
|
|
52
|
+
# Save changes
|
|
53
|
+
aaru save "my commit message"
|
|
54
|
+
|
|
55
|
+
# Sync with remote
|
|
56
|
+
aaru sync
|
|
57
|
+
|
|
58
|
+
# Get help
|
|
59
|
+
aaru --help
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## 📖 Commands
|
|
65
|
+
|
|
66
|
+
### 🟢 Repository Setup
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
aaru init # Initialize a Git repository with .aaru workspace
|
|
70
|
+
aaru clone <repo_url> # Clone a repository and set up .aaru
|
|
71
|
+
aaru config # List current Git configuration
|
|
72
|
+
aaru config-user # Configure Git user name and email
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### 🔵 Daily Workflow
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
aaru status # Show repository status
|
|
79
|
+
aaru save <message> # Stage all changes and commit
|
|
80
|
+
aaru history # Show commit graph
|
|
81
|
+
aaru diff # Show unstaged changes
|
|
82
|
+
aaru undo # Soft-undo last commit
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### 🟡 Branch Management
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
aaru create <branch> # Create and switch to a new branch
|
|
89
|
+
aaru switch <branch> # Switch to an existing branch
|
|
90
|
+
aaru delete <branch> # Delete a branch (safely)
|
|
91
|
+
aaru branches # List all branches
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### 🟣 Remote Operations
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
aaru send # Push current branch to remote
|
|
98
|
+
aaru update # Fetch all remotes
|
|
99
|
+
aaru sync # Pull and push (two-way sync)
|
|
100
|
+
aaru add-upstream <url> # Add upstream remote for forks
|
|
101
|
+
aaru fork-sync # Sync fork with upstream
|
|
102
|
+
aaru fork-sync --no-push # Pull from upstream without pushing
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
### 🔴 Pull Request Tools
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
aaru checkout-pr <number> # Checkout a PR locally for testing
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### 🟠 Stash Tools
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
aaru stash # Stash current changes
|
|
115
|
+
aaru stash-pop # Apply and remove most recent stash
|
|
116
|
+
aaru stash-list # List all stashed changesets
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### ⚫ Git Passthrough
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
aaru raw -- <any git command> # Pass any command directly to Git
|
|
123
|
+
|
|
124
|
+
# Examples:
|
|
125
|
+
aaru raw -- log --oneline -10
|
|
126
|
+
aaru raw -- cherry-pick abc123
|
|
127
|
+
aaru raw -- rebase -i HEAD~3
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
---
|
|
131
|
+
|
|
132
|
+
## 🎯 Features
|
|
133
|
+
|
|
134
|
+
- ✅ Clean, intuitive command names
|
|
135
|
+
- ✅ Safe operations with confirmations
|
|
136
|
+
- ✅ Beautiful colored output
|
|
137
|
+
- ✅ Fork workflow support
|
|
138
|
+
- ✅ PR checkout for testing
|
|
139
|
+
- ✅ Full Git compatibility via `raw` command
|
|
140
|
+
- ✅ Custom `.aaru` workspace tracking
|
|
141
|
+
- ✅ Cross-platform support
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## 🛠️ Requirements
|
|
146
|
+
|
|
147
|
+
- Python 3.8+
|
|
148
|
+
- Git 2.0+
|
|
149
|
+
- typer
|
|
150
|
+
- click
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## 📄 License
|
|
155
|
+
|
|
156
|
+
MIT License - See LICENSE file for details
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
## 🤝 Contributing
|
|
161
|
+
|
|
162
|
+
Contributions are welcome! Feel free to open issues or submit pull requests.
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
## 🌟 Show Your Support
|
|
167
|
+
|
|
168
|
+
If you find AARU CLI helpful, please give it a ⭐ on [GitHub](https://github.com/aarushlohit/GIT_PROTOCOL)!
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
**Made with ❤️ by aarushlohit**
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aarushlohit_git
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A Clean & Powerful Git Workflow Engine
|
|
5
|
+
Home-page: https://github.com/aarushlohit/GIT_PROTOCOL
|
|
6
|
+
Author: aarushlohit
|
|
7
|
+
Author-email: aarushlohit@users.noreply.github.com
|
|
8
|
+
Project-URL: Bug Reports, https://github.com/aarushlohit/GIT_PROTOCOL/issues
|
|
9
|
+
Project-URL: Source, https://github.com/aarushlohit/GIT_PROTOCOL
|
|
10
|
+
Project-URL: Zairok App, https://zairok.web.app
|
|
11
|
+
Keywords: git workflow cli version-control productivity
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: typer>=0.9.0
|
|
26
|
+
Requires-Dist: click>=8.0.0
|
|
27
|
+
Dynamic: author
|
|
28
|
+
Dynamic: author-email
|
|
29
|
+
Dynamic: classifier
|
|
30
|
+
Dynamic: description
|
|
31
|
+
Dynamic: description-content-type
|
|
32
|
+
Dynamic: home-page
|
|
33
|
+
Dynamic: keywords
|
|
34
|
+
Dynamic: license-file
|
|
35
|
+
Dynamic: project-url
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: requires-python
|
|
38
|
+
Dynamic: summary
|
|
39
|
+
|
|
40
|
+
# 🚀 AARU CLI
|
|
41
|
+
|
|
42
|
+
**A Clean & Powerful Git Workflow Engine**
|
|
43
|
+
|
|
44
|
+
[](https://www.python.org/downloads/)
|
|
45
|
+
[](LICENSE)
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## ✨ Created by
|
|
50
|
+
|
|
51
|
+
- 👤 **Author**: aarushlohit
|
|
52
|
+
- 🐙 **GitHub**: [github.com/aarushlohit](https://github.com/aarushlohit)
|
|
53
|
+
- 🌐 **Project**: [Zairok App - zairok.web.app](https://zairok.web.app)
|
|
54
|
+
- 📸 **Instagram**: [@aarushlohit_01](https://instagram.com/aarushlohit_01)
|
|
55
|
+
- 🖼️ **Avatar**: [avatars.githubusercontent.com/u/141929019](https://avatars.githubusercontent.com/u/141929019)
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 📦 Installation
|
|
60
|
+
|
|
61
|
+
### Install from source
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
# Clone the repository
|
|
65
|
+
git clone https://github.com/aarushlohit/GIT_PROTOCOL.git
|
|
66
|
+
cd GIT_PROTOCOL
|
|
67
|
+
|
|
68
|
+
# Install the package
|
|
69
|
+
pip install -e .
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### Install from PyPI
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
pip install aarushlohit_git
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## 🚀 Quick Start
|
|
81
|
+
|
|
82
|
+
After installation, you can use `aaru` command from anywhere:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
# Show banner and info
|
|
86
|
+
aaru aaru
|
|
87
|
+
|
|
88
|
+
# Initialize a repository
|
|
89
|
+
aaru init
|
|
90
|
+
|
|
91
|
+
# Save changes
|
|
92
|
+
aaru save "my commit message"
|
|
93
|
+
|
|
94
|
+
# Sync with remote
|
|
95
|
+
aaru sync
|
|
96
|
+
|
|
97
|
+
# Get help
|
|
98
|
+
aaru --help
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## 📖 Commands
|
|
104
|
+
|
|
105
|
+
### 🟢 Repository Setup
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
aaru init # Initialize a Git repository with .aaru workspace
|
|
109
|
+
aaru clone <repo_url> # Clone a repository and set up .aaru
|
|
110
|
+
aaru config # List current Git configuration
|
|
111
|
+
aaru config-user # Configure Git user name and email
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### 🔵 Daily Workflow
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
aaru status # Show repository status
|
|
118
|
+
aaru save <message> # Stage all changes and commit
|
|
119
|
+
aaru history # Show commit graph
|
|
120
|
+
aaru diff # Show unstaged changes
|
|
121
|
+
aaru undo # Soft-undo last commit
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### 🟡 Branch Management
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
aaru create <branch> # Create and switch to a new branch
|
|
128
|
+
aaru switch <branch> # Switch to an existing branch
|
|
129
|
+
aaru delete <branch> # Delete a branch (safely)
|
|
130
|
+
aaru branches # List all branches
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
### 🟣 Remote Operations
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
aaru send # Push current branch to remote
|
|
137
|
+
aaru update # Fetch all remotes
|
|
138
|
+
aaru sync # Pull and push (two-way sync)
|
|
139
|
+
aaru add-upstream <url> # Add upstream remote for forks
|
|
140
|
+
aaru fork-sync # Sync fork with upstream
|
|
141
|
+
aaru fork-sync --no-push # Pull from upstream without pushing
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### 🔴 Pull Request Tools
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
aaru checkout-pr <number> # Checkout a PR locally for testing
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### 🟠 Stash Tools
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
aaru stash # Stash current changes
|
|
154
|
+
aaru stash-pop # Apply and remove most recent stash
|
|
155
|
+
aaru stash-list # List all stashed changesets
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### ⚫ Git Passthrough
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
aaru raw -- <any git command> # Pass any command directly to Git
|
|
162
|
+
|
|
163
|
+
# Examples:
|
|
164
|
+
aaru raw -- log --oneline -10
|
|
165
|
+
aaru raw -- cherry-pick abc123
|
|
166
|
+
aaru raw -- rebase -i HEAD~3
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## 🎯 Features
|
|
172
|
+
|
|
173
|
+
- ✅ Clean, intuitive command names
|
|
174
|
+
- ✅ Safe operations with confirmations
|
|
175
|
+
- ✅ Beautiful colored output
|
|
176
|
+
- ✅ Fork workflow support
|
|
177
|
+
- ✅ PR checkout for testing
|
|
178
|
+
- ✅ Full Git compatibility via `raw` command
|
|
179
|
+
- ✅ Custom `.aaru` workspace tracking
|
|
180
|
+
- ✅ Cross-platform support
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## 🛠️ Requirements
|
|
185
|
+
|
|
186
|
+
- Python 3.8+
|
|
187
|
+
- Git 2.0+
|
|
188
|
+
- typer
|
|
189
|
+
- click
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## 📄 License
|
|
194
|
+
|
|
195
|
+
MIT License - See LICENSE file for details
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## 🤝 Contributing
|
|
200
|
+
|
|
201
|
+
Contributions are welcome! Feel free to open issues or submit pull requests.
|
|
202
|
+
|
|
203
|
+
---
|
|
204
|
+
|
|
205
|
+
## 🌟 Show Your Support
|
|
206
|
+
|
|
207
|
+
If you find AARU CLI helpful, please give it a ⭐ on [GitHub](https://github.com/aarushlohit/GIT_PROTOCOL)!
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
**Made with ❤️ by aarushlohit**
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
MANIFEST.in
|
|
3
|
+
README.md
|
|
4
|
+
requirements.txt
|
|
5
|
+
setup.py
|
|
6
|
+
aarushlohit_git.egg-info/PKG-INFO
|
|
7
|
+
aarushlohit_git.egg-info/SOURCES.txt
|
|
8
|
+
aarushlohit_git.egg-info/dependency_links.txt
|
|
9
|
+
aarushlohit_git.egg-info/entry_points.txt
|
|
10
|
+
aarushlohit_git.egg-info/requires.txt
|
|
11
|
+
aarushlohit_git.egg-info/top_level.txt
|
|
12
|
+
vibe/.aaru_fastfetch.jsonc
|
|
13
|
+
vibe/__init__.py
|
|
14
|
+
vibe/aaru_cli.py
|
|
15
|
+
vibe/command_registry.py
|
|
16
|
+
vibe/config.py
|
|
17
|
+
vibe/git_wrapper.py
|
|
18
|
+
vibe/ui.py
|
|
19
|
+
vibe/ascii-profile/ascii-art.txt
|
|
20
|
+
vibe/commands/__init__.py
|
|
21
|
+
vibe/commands/branch.py
|
|
22
|
+
vibe/commands/clone.py
|
|
23
|
+
vibe/commands/info.py
|
|
24
|
+
vibe/commands/init.py
|
|
25
|
+
vibe/commands/remote.py
|
|
26
|
+
vibe/commands/setup.py
|
|
27
|
+
vibe/commands/stash.py
|
|
28
|
+
vibe/commands/status.py
|
|
29
|
+
vibe/commands/workflow.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
vibe
|