gitbolt 0.0.0.dev1__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.
- gitbolt-0.0.0.dev1/LICENSE +201 -0
- gitbolt-0.0.0.dev1/PKG-INFO +308 -0
- gitbolt-0.0.0.dev1/README.md +275 -0
- gitbolt-0.0.0.dev1/pyproject.toml +59 -0
- gitbolt-0.0.0.dev1/setup.cfg +4 -0
- gitbolt-0.0.0.dev1/src/gitbolt/__init__.py +18 -0
- gitbolt-0.0.0.dev1/src/gitbolt/_internal_init.py +18 -0
- gitbolt-0.0.0.dev1/src/gitbolt/add.py +652 -0
- gitbolt-0.0.0.dev1/src/gitbolt/base.py +333 -0
- gitbolt-0.0.0.dev1/src/gitbolt/exceptions.py +46 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/__init__.py +14 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/_internal_init.py +9 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/add.py +484 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/base.py +436 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/constants.py +13 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/exceptions.py +110 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/impl/__init__.py +6 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/impl/simple.py +185 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/ls_tree.py +384 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/runner/__init__.py +8 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/runner/base.py +64 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/runner/simple_impl.py +89 -0
- gitbolt-0.0.0.dev1/src/gitbolt/git_subprocess/utils.py +179 -0
- gitbolt-0.0.0.dev1/src/gitbolt/ls_tree.py +155 -0
- gitbolt-0.0.0.dev1/src/gitbolt/models.py +686 -0
- gitbolt-0.0.0.dev1/src/gitbolt/py.typed +0 -0
- gitbolt-0.0.0.dev1/src/gitbolt/utils.py +179 -0
- gitbolt-0.0.0.dev1/src/gitbolt.egg-info/PKG-INFO +308 -0
- gitbolt-0.0.0.dev1/src/gitbolt.egg-info/SOURCES.txt +30 -0
- gitbolt-0.0.0.dev1/src/gitbolt.egg-info/dependency_links.txt +1 -0
- gitbolt-0.0.0.dev1/src/gitbolt.egg-info/requires.txt +4 -0
- gitbolt-0.0.0.dev1/src/gitbolt.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2025 Vaastav Technologies (OPC) Private Limited
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gitbolt
|
|
3
|
+
Version: 0.0.0.dev1
|
|
4
|
+
Summary: Fast, flexible and type-safe Git commands in Python.
|
|
5
|
+
Author-email: Suhas Krishna Srivastava <suhas.srivastava@vaastav.tech>
|
|
6
|
+
Maintainer-email: Suhas Krishna Srivastava <suhas.srivastava@vaastav.tech>
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Project-URL: homepage, https://github.com/Vaastav-Technologies/py-gitbolt
|
|
9
|
+
Project-URL: source, https://github.com/Vaastav-Technologies/py-gitbolt
|
|
10
|
+
Project-URL: issues, https://github.com/Vaastav-Technologies/py-gitbolt/issues
|
|
11
|
+
Keywords: git,vcs,library,version control
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Education
|
|
15
|
+
Classifier: Topic :: Education
|
|
16
|
+
Classifier: Topic :: Software Development
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
|
+
Classifier: Topic :: Software Development :: Version Control
|
|
20
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
21
|
+
Classifier: Operating System :: OS Independent
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
25
|
+
Classifier: Typing :: Typed
|
|
26
|
+
Requires-Python: >=3.12
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: vt-err-hndlr==0.0.0dev1
|
|
30
|
+
Provides-Extra: pygit2
|
|
31
|
+
Requires-Dist: pygit2; extra == "pygit2"
|
|
32
|
+
Dynamic: license-file
|
|
33
|
+
|
|
34
|
+
# ๐ Gitbolt
|
|
35
|
+
|
|
36
|
+

|
|
37
|
+

|
|
38
|
+
[](https://github.com/Vaastav-Technologies/py-gitbolt/actions/workflows/test.yml)
|
|
39
|
+
[](https://github.com/Vaastav-Technologies/py-gitbolt/actions/workflows/typecheck.yml)
|
|
40
|
+
[](https://github.com/Vaastav-Technologies/py-gitbolt/actions/workflows/lint.yml)
|
|
41
|
+
[](https://codecov.io/gh/Vaastav-Technologies/py-gitbolt)
|
|
42
|
+
[](https://github.com/Vaastav-Technologies/py-gitbolt/actions/workflows/python-publish.yml)
|
|
43
|
+

|
|
44
|
+
|
|
45
|
+
**Fast, flexible and type-safe Git command execution in Python using subprocess.**
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## โจ Features
|
|
50
|
+
|
|
51
|
+
* ๐ง **Typed:** All commands and options are statically type-checked.
|
|
52
|
+
* โก **Fast:** Minimal abstractions over subprocess, runs directly on your system Git.
|
|
53
|
+
* ๐งฉ **Composable:** Git commands and options can be passed around as objects.
|
|
54
|
+
* ๐ **Overridable:** Easily override environment variables and options in a chainable, readable manner.
|
|
55
|
+
* ๐ฆ **Lightweight:** No dependencies on heavy Git libraries or C extensions.
|
|
56
|
+
* ๐งฐ **Extensible:** Future support for output transformers and other plugins.
|
|
57
|
+
* ๐จ **Exception Handling:** Raises any error as a Python-recognisable exception.
|
|
58
|
+
* ๐ค **Debuggable:** Exceptions capture `stdout`, `stderr`, and the return code of the run command.
|
|
59
|
+
* ๐ค **Lazy Execution:** Inherently lazily processed.
|
|
60
|
+
* ๐ **Transparent Output:** Returns a Git command's `stdout` as-is.
|
|
61
|
+
* ๐งช **Terminal Functions:** Git subcommands are terminal functions.
|
|
62
|
+
* ๐งผ **Idiomatic Python:** Write commands in idiomatic Python at compile-time and be confident theyโll execute smoothly at runtime.
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## ๐ฆ Installation
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
pip install gitbolt
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## ๐ก Motivation
|
|
75
|
+
|
|
76
|
+
Running system commands in Python can be tricky for the following reasons:
|
|
77
|
+
|
|
78
|
+
1. Arguments sent to `subprocess` may not be typed correctly and result in runtime errors.
|
|
79
|
+
2. Argument groups may be mutually exclusive or required conditionally โ again causing runtime issues.
|
|
80
|
+
3. Errors from subprocess are often unhelpful and difficult to debug.
|
|
81
|
+
|
|
82
|
+
Also, using subprocess effectively means you must:
|
|
83
|
+
|
|
84
|
+
* Understand and manage process setup, piping, and teardown.
|
|
85
|
+
* Know your CLI command intricacies in depth.
|
|
86
|
+
|
|
87
|
+
> This project exists to fix all that โ with ergonomics, speed, and type-safety.
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## ๐ฏ Project Goals
|
|
92
|
+
|
|
93
|
+
### โ
Predictable Compile-Time Behavior
|
|
94
|
+
|
|
95
|
+
Type-checking ensures runtime safety.
|
|
96
|
+
|
|
97
|
+
### โ
Ergonomic APIs
|
|
98
|
+
|
|
99
|
+
<details>
|
|
100
|
+
<summary>Make git command interfaces as ergonomic to the user as possible.</summary>
|
|
101
|
+
|
|
102
|
+
#### Provide versions of most used command combinations
|
|
103
|
+
|
|
104
|
+
`git hash-object` supports taking multiple files and outputs a hash per file. But in practice, it's most often used to write a single file to the Git object database and return its hash. To match this real-world usage, Gitbolt offers a more ergonomic method that accepts one file and returns one hash โ while still giving you the flexibility to access the full range of `git hash-object` capabilities when needed.
|
|
105
|
+
|
|
106
|
+
#### Let subcommands be passed around as objects
|
|
107
|
+
|
|
108
|
+
Gitbolt lets you pass subcommands around as typed objects. This enables highly focused, minimal APIs โ you can write functions that accept only the subcommands they truly need. This leads to cleaner logic, better separation of concerns, and compile-time guarantees that help prevent misuse.
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
import gitbolt
|
|
112
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
113
|
+
|
|
114
|
+
git = SimpleGitCommand()
|
|
115
|
+
version_subcmd = git.version_subcmd
|
|
116
|
+
add_subcmd = git.add_subcmd
|
|
117
|
+
|
|
118
|
+
def method_which_only_adds_a_file(add_subcmd: gitbolt.base.Add):
|
|
119
|
+
"""
|
|
120
|
+
This method only requires the `add` subcommand.
|
|
121
|
+
"""
|
|
122
|
+
...
|
|
123
|
+
|
|
124
|
+
method_which_only_adds_a_file(add_subcmd)
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
</details>
|
|
128
|
+
|
|
129
|
+
### โ
Subcommands as Objects
|
|
130
|
+
|
|
131
|
+
git subcommands are modeled as terminal functions that return stdout.
|
|
132
|
+
|
|
133
|
+
```python
|
|
134
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
135
|
+
|
|
136
|
+
git = SimpleGitCommand()
|
|
137
|
+
status_out = git.status_subcmd.status()
|
|
138
|
+
print(status_out)
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## ๐ง Strong Typing Everywhere
|
|
144
|
+
|
|
145
|
+
Extensive use of type-hints ensures that invalid usages fail early โ at *compile-time*. Write at compile-time and be sure that commands run error-free at runtime.
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
<details>
|
|
150
|
+
<summary>Allow users to set/unset/reset Git environment variables and main command options using typed, chainable, Pythonic methods โ just before a subcommand is executed.</summary>
|
|
151
|
+
|
|
152
|
+
### ๐งฌ Git Environment Variables
|
|
153
|
+
|
|
154
|
+
#### ๐ Override a single Git env (e.g., `GIT_TRACE`)
|
|
155
|
+
|
|
156
|
+
```python
|
|
157
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
158
|
+
|
|
159
|
+
git = SimpleGitCommand()
|
|
160
|
+
git = git.git_envs_override(GIT_TRACE=True)
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
#### ๐ Override multiple Git envs (e.g., `GIT_TRACE`, `GIT_DIR`, `GIT_EDITOR`)
|
|
164
|
+
|
|
165
|
+
```python
|
|
166
|
+
from pathlib import Path
|
|
167
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
168
|
+
|
|
169
|
+
git = SimpleGitCommand()
|
|
170
|
+
git = git.git_envs_override(GIT_TRACE=1, GIT_DIR=Path('/tmp/git-dir/'), GIT_EDITOR='vim')
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
#### ๐ชข Chain multiple overrides fluently
|
|
174
|
+
|
|
175
|
+
```python
|
|
176
|
+
from pathlib import Path
|
|
177
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
178
|
+
|
|
179
|
+
git = SimpleGitCommand()
|
|
180
|
+
overridden_git = git.git_envs_override(GIT_SSH=Path('/tmp/SSH')).git_envs_override(
|
|
181
|
+
GIT_TERMINAL_PROMPT=1,
|
|
182
|
+
GIT_NO_REPLACE_OBJECTS=True
|
|
183
|
+
)
|
|
184
|
+
re_overridden_git = overridden_git.git_envs_override(GIT_TRACE=True)
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
#### โ Unset Git envs using a special `UNSET` marker
|
|
188
|
+
|
|
189
|
+
```python
|
|
190
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
191
|
+
from vt.utils.commons.commons.core_py import UNSET
|
|
192
|
+
|
|
193
|
+
git = SimpleGitCommand()
|
|
194
|
+
overridden_git = git.git_envs_override(GIT_ADVICE=True, GIT_TRACE=True)
|
|
195
|
+
no_advice_unset_git = overridden_git.git_envs_override(GIT_TRACE=UNSET)
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
#### ๐ Reset Git envs by setting new values
|
|
199
|
+
|
|
200
|
+
```python
|
|
201
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
202
|
+
|
|
203
|
+
git = SimpleGitCommand()
|
|
204
|
+
overridden_git = git.git_envs_override(GIT_TRACE=True)
|
|
205
|
+
git_trace_reset_git = overridden_git.git_envs_override(GIT_TRACE=False)
|
|
206
|
+
```
|
|
207
|
+
</details>
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
<details>
|
|
212
|
+
<summary>Allow users to set/unset/reset git main command options in typed and pythonic manner just before subcommand run to provide maximal flexibility.</summary>
|
|
213
|
+
|
|
214
|
+
### โ๏ธ Git Main Command Options
|
|
215
|
+
|
|
216
|
+
#### ๐ Override a single Git opt (e.g., `--no-replace-objects`)
|
|
217
|
+
|
|
218
|
+
```python
|
|
219
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
220
|
+
|
|
221
|
+
git = SimpleGitCommand()
|
|
222
|
+
git = git.git_opts_override(no_replace_objects=True)
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
#### ๐ Override multiple options (e.g., `--git-dir`, `--paginate`)
|
|
226
|
+
|
|
227
|
+
```python
|
|
228
|
+
from pathlib import Path
|
|
229
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
230
|
+
|
|
231
|
+
git = SimpleGitCommand()
|
|
232
|
+
git = git.git_opts_override(no_replace_objects=True, git_dir=Path(), paginate=True)
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
#### ๐ชข Chain multiple option overrides fluently
|
|
236
|
+
|
|
237
|
+
```python
|
|
238
|
+
from pathlib import Path
|
|
239
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
240
|
+
|
|
241
|
+
git = SimpleGitCommand()
|
|
242
|
+
overridden_git = git.git_opts_override(exec_path=Path('tmp')).git_opts_override(
|
|
243
|
+
noglob_pathspecs=True,
|
|
244
|
+
no_advice=True
|
|
245
|
+
).git_opts_override(
|
|
246
|
+
config_env={'auth': 'suhas', 'comm': 'suyog'}
|
|
247
|
+
)
|
|
248
|
+
re_overridden_git = overridden_git.git_opts_override(glob_pathspecs=True)
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
#### โ Unset Git opts using a special `UNSET` marker
|
|
252
|
+
|
|
253
|
+
```python
|
|
254
|
+
from pathlib import Path
|
|
255
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
256
|
+
from vt.utils.commons.commons.core_py import UNSET
|
|
257
|
+
|
|
258
|
+
git = SimpleGitCommand()
|
|
259
|
+
overridden_git = git.git_opts_override(exec_path=Path('tmp'), no_advice=True)
|
|
260
|
+
no_advice_unset_git = overridden_git.git_opts_override(no_advice=UNSET)
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
#### ๐ Reset Git opts by setting new values
|
|
264
|
+
|
|
265
|
+
```python
|
|
266
|
+
from gitbolt.git_subprocess.impl.simple import SimpleGitCommand
|
|
267
|
+
|
|
268
|
+
git = SimpleGitCommand()
|
|
269
|
+
overridden_git = git.git_opts_override(no_advice=True)
|
|
270
|
+
no_advice_reset_git = overridden_git.git_opts_override(no_advice=False)
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
</details>
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
## ๐ Transparent by Default
|
|
279
|
+
|
|
280
|
+
Output of git commands is returned as-is. No transformations unless explicitly requested.
|
|
281
|
+
Transformers for formatting/parsing can be added later.
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
## โ
Benefits Out-of-the-Box
|
|
286
|
+
|
|
287
|
+
* ๐ Composable Git commands.
|
|
288
|
+
* ๐ค Returns raw stdout.
|
|
289
|
+
* ๐จ Exceptions with full context.
|
|
290
|
+
* ๐ค Lazy execution.
|
|
291
|
+
* ๐ง Strong typing and compile-time guarantees.
|
|
292
|
+
* ๐งผ Idiomatic Python.
|
|
293
|
+
* ๐งช Terminal subcommands.
|
|
294
|
+
* ๐ฃ Fail-fast on invalid usage.
|
|
295
|
+
|
|
296
|
+
---
|
|
297
|
+
|
|
298
|
+
## ๐ More Information
|
|
299
|
+
|
|
300
|
+
- ๐ [License (Apache-2.0)](./LICENSE)
|
|
301
|
+
- ๐ค [Contributing Guide](./CONTRIBUTING.md)
|
|
302
|
+
|
|
303
|
+
---
|
|
304
|
+
|
|
305
|
+
## ๐ง Future Goals
|
|
306
|
+
|
|
307
|
+
* Support `pygit2` for direct, fast Git access.
|
|
308
|
+
* Enable `porcelain` support using `pygit2` where required.
|