tgit 0.7.0__tar.gz → 0.8.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.
- {tgit-0.7.0 → tgit-0.8.0}/.gitignore +5 -5
- {tgit-0.7.0 → tgit-0.8.0}/.python-version +1 -1
- {tgit-0.7.0 → tgit-0.8.0}/.tgit.yml +5 -5
- {tgit-0.7.0 → tgit-0.8.0}/.vscode/settings.json +12 -12
- {tgit-0.7.0 → tgit-0.8.0}/CHANGELOG.md +135 -135
- {tgit-0.7.0 → tgit-0.8.0}/PKG-INFO +5 -5
- {tgit-0.7.0 → tgit-0.8.0}/README.md +17 -17
- {tgit-0.7.0 → tgit-0.8.0}/pyproject.toml +45 -39
- {tgit-0.7.0 → tgit-0.8.0}/requirements-dev.lock +8 -1
- {tgit-0.7.0 → tgit-0.8.0}/requirements.lock +7 -1
- {tgit-0.7.0 → tgit-0.8.0}/tgit/changelog.py +282 -282
- {tgit-0.7.0 → tgit-0.8.0}/tgit/cli.py +43 -43
- {tgit-0.7.0 → tgit-0.8.0}/tgit/commit.py +119 -111
- {tgit-0.7.0 → tgit-0.8.0}/tgit/settings.py +32 -32
- {tgit-0.7.0 → tgit-0.8.0}/tgit/utils.py +83 -83
- {tgit-0.7.0 → tgit-0.8.0}/tgit/version.py +438 -438
- {tgit-0.7.0 → tgit-0.8.0}/scripts/publish.sh +0 -0
- {tgit-0.7.0 → tgit-0.8.0}/tgit/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
build
|
|
2
|
-
dist
|
|
3
|
-
*.egg-info
|
|
4
|
-
*.egg
|
|
5
|
-
__pycache__
|
|
1
|
+
build
|
|
2
|
+
dist
|
|
3
|
+
*.egg-info
|
|
4
|
+
*.egg
|
|
5
|
+
__pycache__
|
|
6
6
|
.DS_Store
|
|
@@ -1 +1 @@
|
|
|
1
|
-
3.12.5
|
|
1
|
+
3.12.5
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
commit:
|
|
2
|
-
emoji: true
|
|
3
|
-
types:
|
|
4
|
-
- type: fix
|
|
5
|
-
emoji: ":adhesive_bandage:"
|
|
1
|
+
commit:
|
|
2
|
+
emoji: true
|
|
3
|
+
types:
|
|
4
|
+
- type: fix
|
|
5
|
+
emoji: ":adhesive_bandage:"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
{
|
|
2
|
-
"[python]": {
|
|
3
|
-
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
4
|
-
"editor.formatOnSave": true,
|
|
5
|
-
"editor.codeActionsOnSave": {
|
|
6
|
-
"source.organizeImports": "explicit"
|
|
7
|
-
},
|
|
8
|
-
},
|
|
9
|
-
"isort.args": [
|
|
10
|
-
"--profile",
|
|
11
|
-
"black"
|
|
12
|
-
],
|
|
1
|
+
{
|
|
2
|
+
"[python]": {
|
|
3
|
+
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
4
|
+
"editor.formatOnSave": true,
|
|
5
|
+
"editor.codeActionsOnSave": {
|
|
6
|
+
"source.organizeImports": "explicit"
|
|
7
|
+
},
|
|
8
|
+
},
|
|
9
|
+
"isort.args": [
|
|
10
|
+
"--profile",
|
|
11
|
+
"black"
|
|
12
|
+
],
|
|
13
13
|
}
|
|
@@ -1,135 +1,135 @@
|
|
|
1
|
-
## v0.6.1
|
|
2
|
-
|
|
3
|
-
[v0.6.0...v0.6.1](https://github.com/Jannchie/tgit/compare/v0.6.0...v0.6.1)
|
|
4
|
-
|
|
5
|
-
### :adhesive_bandage: Fixes
|
|
6
|
-
|
|
7
|
-
- **changelog**: simplify sort by scope logic and validate diff before AI command - By [Jannchie](mailto:panjianqi@preferred.jp) in [32dd4e3](https://github.com/Jannchie/tgit/commit/32dd4e3)
|
|
8
|
-
|
|
9
|
-
### :wrench: Chores
|
|
10
|
-
|
|
11
|
-
- update gitignore, vscode settings, and pyproject.toml - By [Jannchie](mailto:panjianqi@preferred.jp) in [103271e](https://github.com/Jannchie/tgit/commit/103271e)
|
|
12
|
-
|
|
13
|
-
## v0.6.0
|
|
14
|
-
|
|
15
|
-
[v0.5.2...v0.6.0](https://github.com/Jannchie/tgit/compare/v0.5.2...v0.6.0)
|
|
16
|
-
|
|
17
|
-
### :sparkles: Features
|
|
18
|
-
|
|
19
|
-
- **version**: introduce auto-detection of version bump based on commit types - By [Jannchie](mailto:panjianqi@preferred.jp) in [910107f](https://github.com/Jannchie/tgit/commit/910107f)
|
|
20
|
-
|
|
21
|
-
### :art: Refactors
|
|
22
|
-
|
|
23
|
-
- extract git commit range logic into separate function for better readability - By [Jannchie](mailto:panjianqi@preferred.jp) in [44f9c94](https://github.com/Jannchie/tgit/commit/44f9c94)
|
|
24
|
-
|
|
25
|
-
## v0.5.2
|
|
26
|
-
|
|
27
|
-
[v0.5.1...v0.5.2](https://github.com/Jannchie/tgit/compare/v0.5.1...v0.5.2)
|
|
28
|
-
|
|
29
|
-
### :adhesive_bandage: Fixes
|
|
30
|
-
|
|
31
|
-
- **commit**: correct commit message formatting and emoji usage - By [Jannchie](mailto:panjianqi@preferred.jp) in [34b58a9](https://github.com/Jannchie/tgit/commit/34b58a9)
|
|
32
|
-
|
|
33
|
-
## v0.5.1
|
|
34
|
-
|
|
35
|
-
[v0.5.0...v0.5.1](https://github.com/Jannchie/tgit/compare/v0.5.0...v0.5.1)
|
|
36
|
-
|
|
37
|
-
### :sparkles: Features
|
|
38
|
-
|
|
39
|
-
- **commit**: add rich print for missing commit message - By [Jannchie](mailto:panjianqi@preferred.jp) in [686cf4a](https://github.com/Jannchie/tgit/commit/686cf4a)
|
|
40
|
-
|
|
41
|
-
## v0.5.0
|
|
42
|
-
|
|
43
|
-
[v0.4.3...v0.5.0](https://github.com/Jannchie/tgit/compare/v0.4.3...v0.5.0)
|
|
44
|
-
|
|
45
|
-
### :sparkles: Features
|
|
46
|
-
|
|
47
|
-
- **tgit**: add ai-powered commit message suggestion using openai - By [Jannchie](mailto:panjianqi@preferred.jp) in [93299f1](https://github.com/Jannchie/tgit/commit/93299f1)
|
|
48
|
-
|
|
49
|
-
## v0.4.3
|
|
50
|
-
|
|
51
|
-
[v0.4.2...v0.4.3](https://github.com/Jannchie/tgit/compare/v0.4.2...v0.4.3)
|
|
52
|
-
|
|
53
|
-
### :art: Refactors
|
|
54
|
-
|
|
55
|
-
- **version**: make the code clearer - By [Jianqi Pan](mailto:jannchie@gmail.com) in [68d626e](https://github.com/Jannchie/tgit/commit/68d626e)
|
|
56
|
-
|
|
57
|
-
### :memo: Documentation
|
|
58
|
-
|
|
59
|
-
- add codetime badge - By [Jianqi Pan](mailto:jannchie@gmail.com) in [984b9d3](https://github.com/Jannchie/tgit/commit/984b9d3)
|
|
60
|
-
|
|
61
|
-
## v0.4.2
|
|
62
|
-
|
|
63
|
-
[v0.4.1...v0.4.2](https://github.com/Jannchie/tgit/compare/v0.4.1...v0.4.2)
|
|
64
|
-
|
|
65
|
-
### :adhesive_bandage: Fixes
|
|
66
|
-
|
|
67
|
-
- **depeendencies**: need python 3.11 because of tomllib - By [Jianqi Pan](mailto:jannchie@gmail.com) in [d7b3c0a](https://github.com/Jannchie/tgit/commit/d7b3c0a)
|
|
68
|
-
|
|
69
|
-
## v0.4.1
|
|
70
|
-
|
|
71
|
-
[v0.4.0...v0.4.1](https://github.com/Jannchie/tgit/compare/v0.4.0...v0.4.1)
|
|
72
|
-
|
|
73
|
-
### :adhesive_bandage: Fixes
|
|
74
|
-
|
|
75
|
-
- **depeendencies**: add gitpython as dependencies - By [Jianqi Pan](mailto:jannchie@gmail.com) in [51bbcb1](https://github.com/Jannchie/tgit/commit/51bbcb1)
|
|
76
|
-
|
|
77
|
-
## v0.4.0
|
|
78
|
-
|
|
79
|
-
[v0.3.0...v0.4.0](https://github.com/Jannchie/tgit/compare/v0.3.0...v0.4.0)
|
|
80
|
-
|
|
81
|
-
### :sparkles: Features
|
|
82
|
-
|
|
83
|
-
- **changelog**: implement basic changelog features - By [Jianqi Pan](mailto:jannchie@gmail.com) in [cf623c6](https://github.com/Jannchie/tgit/commit/cf623c6)
|
|
84
|
-
|
|
85
|
-
### :adhesive_bandage: Fixes
|
|
86
|
-
|
|
87
|
-
- **changelog**: check whether the latest commit has a tag - By [Jianqi Pan](mailto:jannchie@gmail.com) in [310a306](https://github.com/Jannchie/tgit/commit/310a306)
|
|
88
|
-
|
|
89
|
-
### :memo: Documentation
|
|
90
|
-
|
|
91
|
-
- add readme - By [Jianqi Pan](mailto:jannchie@gmail.com) in [1b31cbf](https://github.com/Jannchie/tgit/commit/1b31cbf)
|
|
92
|
-
|
|
93
|
-
### :wrench: Chores
|
|
94
|
-
|
|
95
|
-
- **build**: use poetry - By [Jianqi Pan](mailto:jannchie@gmail.com) in [656de25](https://github.com/Jannchie/tgit/commit/656de25)
|
|
96
|
-
- **version**: clean the useless code - By [Jianqi Pan](mailto:jannchie@gmail.com) in [0c24d69](https://github.com/Jannchie/tgit/commit/0c24d69)
|
|
97
|
-
|
|
98
|
-
## v0.3.0
|
|
99
|
-
|
|
100
|
-
[v0.2.2...v0.3.0](https://github.com/Jannchie/tgit/compare/v0.2.2...v0.3.0)
|
|
101
|
-
|
|
102
|
-
### :sparkles: Features
|
|
103
|
-
|
|
104
|
-
- **version**: update more version files - By [Jianqi Pan](mailto:jannchie@gmail.com) in [3a87374](https://github.com/Jannchie/tgit/commit/3a87374)
|
|
105
|
-
- add gitt as a alias - By [Jianqi Pan](mailto:jannchie@gmail.com) in [bacd8fe](https://github.com/Jannchie/tgit/commit/bacd8fe)
|
|
106
|
-
|
|
107
|
-
### :wrench: Chores
|
|
108
|
-
|
|
109
|
-
- **commit**: do not show type choices because they are too long - By [Jianqi Pan](mailto:jannchie@gmail.com) in [886ed07](https://github.com/Jannchie/tgit/commit/886ed07)
|
|
110
|
-
- **scripts**: update build script - By [Jianqi Pan](mailto:jannchie@gmail.com) in [89702cd](https://github.com/Jannchie/tgit/commit/89702cd)
|
|
111
|
-
|
|
112
|
-
## v0.2.2
|
|
113
|
-
|
|
114
|
-
[v0.2.1...v0.2.2](https://github.com/Jannchie/tgit/compare/v0.2.1...v0.2.2)
|
|
115
|
-
|
|
116
|
-
### :adhesive_bandage: Fixes
|
|
117
|
-
|
|
118
|
-
- **commit**: add tag - By [Jianqi Pan](mailto:jannchie@gmail.com) in [8ea1e80](https://github.com/Jannchie/tgit/commit/8ea1e80)
|
|
119
|
-
|
|
120
|
-
## v0.2.1
|
|
121
|
-
|
|
122
|
-
[0c6d5b32aad9f01678b114120e7530dfebf4fb85...v0.2.1](https://github.com/Jannchie/tgit/compare/0c6d5b32aad9f01678b114120e7530dfebf4fb85...v0.2.1)
|
|
123
|
-
|
|
124
|
-
### :sparkles: Features
|
|
125
|
-
|
|
126
|
-
- **commit**: enable emoji settings - By [Jianqi Pan](mailto:jannchie@gmail.com) in [6acd0dc](https://github.com/Jannchie/tgit/commit/6acd0dc)
|
|
127
|
-
- **version**: detect version from file or git tags - By [Jianqi Pan](mailto:jannchie@gmail.com) in [5b4d4aa](https://github.com/Jannchie/tgit/commit/5b4d4aa)
|
|
128
|
-
|
|
129
|
-
### :adhesive_bandage: Fixes
|
|
130
|
-
|
|
131
|
-
- **commit**: push tag - By [Jianqi Pan](mailto:jannchie@gmail.com) in [35c96a8](https://github.com/Jannchie/tgit/commit/35c96a8)
|
|
132
|
-
|
|
133
|
-
### :wrench: Chores
|
|
134
|
-
|
|
135
|
-
- **format**: use sourcery - By [Jianqi Pan](mailto:jannchie@gmail.com) in [03f2078](https://github.com/Jannchie/tgit/commit/03f2078)
|
|
1
|
+
## v0.6.1
|
|
2
|
+
|
|
3
|
+
[v0.6.0...v0.6.1](https://github.com/Jannchie/tgit/compare/v0.6.0...v0.6.1)
|
|
4
|
+
|
|
5
|
+
### :adhesive_bandage: Fixes
|
|
6
|
+
|
|
7
|
+
- **changelog**: simplify sort by scope logic and validate diff before AI command - By [Jannchie](mailto:panjianqi@preferred.jp) in [32dd4e3](https://github.com/Jannchie/tgit/commit/32dd4e3)
|
|
8
|
+
|
|
9
|
+
### :wrench: Chores
|
|
10
|
+
|
|
11
|
+
- update gitignore, vscode settings, and pyproject.toml - By [Jannchie](mailto:panjianqi@preferred.jp) in [103271e](https://github.com/Jannchie/tgit/commit/103271e)
|
|
12
|
+
|
|
13
|
+
## v0.6.0
|
|
14
|
+
|
|
15
|
+
[v0.5.2...v0.6.0](https://github.com/Jannchie/tgit/compare/v0.5.2...v0.6.0)
|
|
16
|
+
|
|
17
|
+
### :sparkles: Features
|
|
18
|
+
|
|
19
|
+
- **version**: introduce auto-detection of version bump based on commit types - By [Jannchie](mailto:panjianqi@preferred.jp) in [910107f](https://github.com/Jannchie/tgit/commit/910107f)
|
|
20
|
+
|
|
21
|
+
### :art: Refactors
|
|
22
|
+
|
|
23
|
+
- extract git commit range logic into separate function for better readability - By [Jannchie](mailto:panjianqi@preferred.jp) in [44f9c94](https://github.com/Jannchie/tgit/commit/44f9c94)
|
|
24
|
+
|
|
25
|
+
## v0.5.2
|
|
26
|
+
|
|
27
|
+
[v0.5.1...v0.5.2](https://github.com/Jannchie/tgit/compare/v0.5.1...v0.5.2)
|
|
28
|
+
|
|
29
|
+
### :adhesive_bandage: Fixes
|
|
30
|
+
|
|
31
|
+
- **commit**: correct commit message formatting and emoji usage - By [Jannchie](mailto:panjianqi@preferred.jp) in [34b58a9](https://github.com/Jannchie/tgit/commit/34b58a9)
|
|
32
|
+
|
|
33
|
+
## v0.5.1
|
|
34
|
+
|
|
35
|
+
[v0.5.0...v0.5.1](https://github.com/Jannchie/tgit/compare/v0.5.0...v0.5.1)
|
|
36
|
+
|
|
37
|
+
### :sparkles: Features
|
|
38
|
+
|
|
39
|
+
- **commit**: add rich print for missing commit message - By [Jannchie](mailto:panjianqi@preferred.jp) in [686cf4a](https://github.com/Jannchie/tgit/commit/686cf4a)
|
|
40
|
+
|
|
41
|
+
## v0.5.0
|
|
42
|
+
|
|
43
|
+
[v0.4.3...v0.5.0](https://github.com/Jannchie/tgit/compare/v0.4.3...v0.5.0)
|
|
44
|
+
|
|
45
|
+
### :sparkles: Features
|
|
46
|
+
|
|
47
|
+
- **tgit**: add ai-powered commit message suggestion using openai - By [Jannchie](mailto:panjianqi@preferred.jp) in [93299f1](https://github.com/Jannchie/tgit/commit/93299f1)
|
|
48
|
+
|
|
49
|
+
## v0.4.3
|
|
50
|
+
|
|
51
|
+
[v0.4.2...v0.4.3](https://github.com/Jannchie/tgit/compare/v0.4.2...v0.4.3)
|
|
52
|
+
|
|
53
|
+
### :art: Refactors
|
|
54
|
+
|
|
55
|
+
- **version**: make the code clearer - By [Jianqi Pan](mailto:jannchie@gmail.com) in [68d626e](https://github.com/Jannchie/tgit/commit/68d626e)
|
|
56
|
+
|
|
57
|
+
### :memo: Documentation
|
|
58
|
+
|
|
59
|
+
- add codetime badge - By [Jianqi Pan](mailto:jannchie@gmail.com) in [984b9d3](https://github.com/Jannchie/tgit/commit/984b9d3)
|
|
60
|
+
|
|
61
|
+
## v0.4.2
|
|
62
|
+
|
|
63
|
+
[v0.4.1...v0.4.2](https://github.com/Jannchie/tgit/compare/v0.4.1...v0.4.2)
|
|
64
|
+
|
|
65
|
+
### :adhesive_bandage: Fixes
|
|
66
|
+
|
|
67
|
+
- **depeendencies**: need python 3.11 because of tomllib - By [Jianqi Pan](mailto:jannchie@gmail.com) in [d7b3c0a](https://github.com/Jannchie/tgit/commit/d7b3c0a)
|
|
68
|
+
|
|
69
|
+
## v0.4.1
|
|
70
|
+
|
|
71
|
+
[v0.4.0...v0.4.1](https://github.com/Jannchie/tgit/compare/v0.4.0...v0.4.1)
|
|
72
|
+
|
|
73
|
+
### :adhesive_bandage: Fixes
|
|
74
|
+
|
|
75
|
+
- **depeendencies**: add gitpython as dependencies - By [Jianqi Pan](mailto:jannchie@gmail.com) in [51bbcb1](https://github.com/Jannchie/tgit/commit/51bbcb1)
|
|
76
|
+
|
|
77
|
+
## v0.4.0
|
|
78
|
+
|
|
79
|
+
[v0.3.0...v0.4.0](https://github.com/Jannchie/tgit/compare/v0.3.0...v0.4.0)
|
|
80
|
+
|
|
81
|
+
### :sparkles: Features
|
|
82
|
+
|
|
83
|
+
- **changelog**: implement basic changelog features - By [Jianqi Pan](mailto:jannchie@gmail.com) in [cf623c6](https://github.com/Jannchie/tgit/commit/cf623c6)
|
|
84
|
+
|
|
85
|
+
### :adhesive_bandage: Fixes
|
|
86
|
+
|
|
87
|
+
- **changelog**: check whether the latest commit has a tag - By [Jianqi Pan](mailto:jannchie@gmail.com) in [310a306](https://github.com/Jannchie/tgit/commit/310a306)
|
|
88
|
+
|
|
89
|
+
### :memo: Documentation
|
|
90
|
+
|
|
91
|
+
- add readme - By [Jianqi Pan](mailto:jannchie@gmail.com) in [1b31cbf](https://github.com/Jannchie/tgit/commit/1b31cbf)
|
|
92
|
+
|
|
93
|
+
### :wrench: Chores
|
|
94
|
+
|
|
95
|
+
- **build**: use poetry - By [Jianqi Pan](mailto:jannchie@gmail.com) in [656de25](https://github.com/Jannchie/tgit/commit/656de25)
|
|
96
|
+
- **version**: clean the useless code - By [Jianqi Pan](mailto:jannchie@gmail.com) in [0c24d69](https://github.com/Jannchie/tgit/commit/0c24d69)
|
|
97
|
+
|
|
98
|
+
## v0.3.0
|
|
99
|
+
|
|
100
|
+
[v0.2.2...v0.3.0](https://github.com/Jannchie/tgit/compare/v0.2.2...v0.3.0)
|
|
101
|
+
|
|
102
|
+
### :sparkles: Features
|
|
103
|
+
|
|
104
|
+
- **version**: update more version files - By [Jianqi Pan](mailto:jannchie@gmail.com) in [3a87374](https://github.com/Jannchie/tgit/commit/3a87374)
|
|
105
|
+
- add gitt as a alias - By [Jianqi Pan](mailto:jannchie@gmail.com) in [bacd8fe](https://github.com/Jannchie/tgit/commit/bacd8fe)
|
|
106
|
+
|
|
107
|
+
### :wrench: Chores
|
|
108
|
+
|
|
109
|
+
- **commit**: do not show type choices because they are too long - By [Jianqi Pan](mailto:jannchie@gmail.com) in [886ed07](https://github.com/Jannchie/tgit/commit/886ed07)
|
|
110
|
+
- **scripts**: update build script - By [Jianqi Pan](mailto:jannchie@gmail.com) in [89702cd](https://github.com/Jannchie/tgit/commit/89702cd)
|
|
111
|
+
|
|
112
|
+
## v0.2.2
|
|
113
|
+
|
|
114
|
+
[v0.2.1...v0.2.2](https://github.com/Jannchie/tgit/compare/v0.2.1...v0.2.2)
|
|
115
|
+
|
|
116
|
+
### :adhesive_bandage: Fixes
|
|
117
|
+
|
|
118
|
+
- **commit**: add tag - By [Jianqi Pan](mailto:jannchie@gmail.com) in [8ea1e80](https://github.com/Jannchie/tgit/commit/8ea1e80)
|
|
119
|
+
|
|
120
|
+
## v0.2.1
|
|
121
|
+
|
|
122
|
+
[0c6d5b32aad9f01678b114120e7530dfebf4fb85...v0.2.1](https://github.com/Jannchie/tgit/compare/0c6d5b32aad9f01678b114120e7530dfebf4fb85...v0.2.1)
|
|
123
|
+
|
|
124
|
+
### :sparkles: Features
|
|
125
|
+
|
|
126
|
+
- **commit**: enable emoji settings - By [Jianqi Pan](mailto:jannchie@gmail.com) in [6acd0dc](https://github.com/Jannchie/tgit/commit/6acd0dc)
|
|
127
|
+
- **version**: detect version from file or git tags - By [Jianqi Pan](mailto:jannchie@gmail.com) in [5b4d4aa](https://github.com/Jannchie/tgit/commit/5b4d4aa)
|
|
128
|
+
|
|
129
|
+
### :adhesive_bandage: Fixes
|
|
130
|
+
|
|
131
|
+
- **commit**: push tag - By [Jianqi Pan](mailto:jannchie@gmail.com) in [35c96a8](https://github.com/Jannchie/tgit/commit/35c96a8)
|
|
132
|
+
|
|
133
|
+
### :wrench: Chores
|
|
134
|
+
|
|
135
|
+
- **format**: use sourcery - By [Jianqi Pan](mailto:jannchie@gmail.com) in [03f2078](https://github.com/Jannchie/tgit/commit/03f2078)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: tgit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze.
|
|
5
5
|
Author-email: Jannchie <jannchie@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -13,11 +13,11 @@ Classifier: Topic :: Software Development :: Version Control
|
|
|
13
13
|
Classifier: Topic :: Utilities
|
|
14
14
|
Classifier: Typing :: Typed
|
|
15
15
|
Requires-Python: >=3.11
|
|
16
|
-
Requires-Dist: gitpython
|
|
17
|
-
Requires-Dist: inquirer
|
|
16
|
+
Requires-Dist: gitpython>=3.1.43
|
|
17
|
+
Requires-Dist: inquirer>=3.4.0
|
|
18
18
|
Requires-Dist: openai>=1.51.0
|
|
19
|
-
Requires-Dist: pyyaml
|
|
20
|
-
Requires-Dist: rich
|
|
19
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
20
|
+
Requires-Dist: rich>=13.9.2
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
|
|
23
23
|
# tgit
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# tgit
|
|
2
|
-
|
|
3
|
-
[](https://codetime.dev)
|
|
4
|
-
|
|
5
|
-
Tool for managing git repositories.
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
pip install tgit
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
tgit --help
|
|
17
|
-
```
|
|
1
|
+
# tgit
|
|
2
|
+
|
|
3
|
+
[](https://codetime.dev)
|
|
4
|
+
|
|
5
|
+
Tool for managing git repositories.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install tgit
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
tgit --help
|
|
17
|
+
```
|
|
@@ -1,39 +1,45 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "tgit"
|
|
3
|
-
version = "0.
|
|
4
|
-
description = "Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze."
|
|
5
|
-
authors = [{ name = "Jannchie", email = "jannchie@gmail.com" }]
|
|
6
|
-
dependencies = [
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
[tool.
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
[
|
|
39
|
-
|
|
1
|
+
[project]
|
|
2
|
+
name = "tgit"
|
|
3
|
+
version = "0.8.0"
|
|
4
|
+
description = "Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze."
|
|
5
|
+
authors = [{ name = "Jannchie", email = "jannchie@gmail.com" }]
|
|
6
|
+
dependencies = [
|
|
7
|
+
"rich>=13.9.2",
|
|
8
|
+
"pyyaml>=6.0.2",
|
|
9
|
+
"inquirer>=3.4.0",
|
|
10
|
+
"gitpython>=3.1.43",
|
|
11
|
+
"openai>=1.51.0",
|
|
12
|
+
]
|
|
13
|
+
readme = { content-type = "text/markdown", file = "README.md" }
|
|
14
|
+
requires-python = ">= 3.11"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 3 - Alpha",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Topic :: Software Development :: Version Control",
|
|
21
|
+
"Topic :: Utilities",
|
|
22
|
+
"Typing :: Typed",
|
|
23
|
+
]
|
|
24
|
+
keywords = ["git", "tool", "changelog", "version", "commit"]
|
|
25
|
+
license = "MIT"
|
|
26
|
+
|
|
27
|
+
[build-system]
|
|
28
|
+
requires = ["hatchling"]
|
|
29
|
+
build-backend = "hatchling.build"
|
|
30
|
+
|
|
31
|
+
[tool.rye]
|
|
32
|
+
managed = true
|
|
33
|
+
dev-dependencies = ["black>=24.8.0", "isort>=5.13.2"]
|
|
34
|
+
|
|
35
|
+
[tool.black]
|
|
36
|
+
line-length = 160
|
|
37
|
+
|
|
38
|
+
[tool.hatch.metadata]
|
|
39
|
+
allow-direct-references = true
|
|
40
|
+
|
|
41
|
+
[tool.hatch.build.targets.wheel]
|
|
42
|
+
packages = ["tgit"]
|
|
43
|
+
|
|
44
|
+
[project.scripts]
|
|
45
|
+
tgit = "tgit:cli.main"
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
-e file:.
|
|
13
13
|
annotated-types==0.7.0
|
|
14
14
|
# via pydantic
|
|
15
|
+
ansicon==1.89.0
|
|
16
|
+
# via jinxed
|
|
15
17
|
anyio==4.6.0
|
|
16
18
|
# via httpx
|
|
17
19
|
# via openai
|
|
@@ -23,6 +25,9 @@ certifi==2024.8.30
|
|
|
23
25
|
# via httpx
|
|
24
26
|
click==8.1.7
|
|
25
27
|
# via black
|
|
28
|
+
colorama==0.4.6
|
|
29
|
+
# via click
|
|
30
|
+
# via tqdm
|
|
26
31
|
distro==1.9.0
|
|
27
32
|
# via openai
|
|
28
33
|
editor==1.6.6
|
|
@@ -43,6 +48,8 @@ idna==3.10
|
|
|
43
48
|
inquirer==3.4.0
|
|
44
49
|
# via tgit
|
|
45
50
|
isort==5.13.2
|
|
51
|
+
jinxed==1.3.0
|
|
52
|
+
# via blessed
|
|
46
53
|
jiter==0.5.0
|
|
47
54
|
# via openai
|
|
48
55
|
markdown-it-py==3.0.0
|
|
@@ -69,7 +76,7 @@ pyyaml==6.0.2
|
|
|
69
76
|
# via tgit
|
|
70
77
|
readchar==4.2.0
|
|
71
78
|
# via inquirer
|
|
72
|
-
rich==13.9.
|
|
79
|
+
rich==13.9.2
|
|
73
80
|
# via tgit
|
|
74
81
|
runs==1.2.2
|
|
75
82
|
# via editor
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
-e file:.
|
|
13
13
|
annotated-types==0.7.0
|
|
14
14
|
# via pydantic
|
|
15
|
+
ansicon==1.89.0
|
|
16
|
+
# via jinxed
|
|
15
17
|
anyio==4.6.0
|
|
16
18
|
# via httpx
|
|
17
19
|
# via openai
|
|
@@ -20,6 +22,8 @@ blessed==1.20.0
|
|
|
20
22
|
certifi==2024.8.30
|
|
21
23
|
# via httpcore
|
|
22
24
|
# via httpx
|
|
25
|
+
colorama==0.4.6
|
|
26
|
+
# via tqdm
|
|
23
27
|
distro==1.9.0
|
|
24
28
|
# via openai
|
|
25
29
|
editor==1.6.6
|
|
@@ -39,6 +43,8 @@ idna==3.10
|
|
|
39
43
|
# via httpx
|
|
40
44
|
inquirer==3.4.0
|
|
41
45
|
# via tgit
|
|
46
|
+
jinxed==1.3.0
|
|
47
|
+
# via blessed
|
|
42
48
|
jiter==0.5.0
|
|
43
49
|
# via openai
|
|
44
50
|
markdown-it-py==3.0.0
|
|
@@ -57,7 +63,7 @@ pyyaml==6.0.2
|
|
|
57
63
|
# via tgit
|
|
58
64
|
readchar==4.2.0
|
|
59
65
|
# via inquirer
|
|
60
|
-
rich==13.9.
|
|
66
|
+
rich==13.9.2
|
|
61
67
|
# via tgit
|
|
62
68
|
runs==1.2.2
|
|
63
69
|
# via editor
|