commitmessagegenerator 1.2.5__tar.gz → 1.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.
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/PKG-INFO +10 -2
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/README.md +9 -1
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator/generator.py +1 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator.egg-info/PKG-INFO +10 -2
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/pyproject.toml +1 -1
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/LICENSE +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator/__init__.py +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator/cli.py +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator/configure.py +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator.egg-info/SOURCES.txt +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator.egg-info/dependency_links.txt +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator.egg-info/entry_points.txt +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator.egg-info/requires.txt +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator.egg-info/top_level.txt +0 -0
- {commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: commitmessagegenerator
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Generate commit messages with AI (Google Gemini) automatically using `git diff`.
|
|
5
5
|
Author-email: Gabriel Terceiro <gcarolinoterceiro@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -31,6 +31,14 @@ pip install commitmessagegenerator
|
|
|
31
31
|
|
|
32
32
|
## ⚙️ Configuring
|
|
33
33
|
|
|
34
|
+
```bash
|
|
35
|
+
commitgen -cf
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Run this and type you API key to the terminal so the package creates the .env file and automatically adds it to the .gitignore
|
|
39
|
+
|
|
40
|
+
Or do it manually:
|
|
41
|
+
|
|
34
42
|
## IMPORTANT - BEFORE CREATING THIS FILE ADD '.venv' TO YOUR .gitignore SO YOUR API KEY ISN'T EXPOSED
|
|
35
43
|
|
|
36
44
|
Create a `.env` file in the directory where you will run commitgen (usually the root of your Git project):
|
|
@@ -44,7 +52,7 @@ GEMINI_API_KEY=your-gemini-api-key
|
|
|
44
52
|
With the terminal, inside any Git repository with pending changes, run:
|
|
45
53
|
|
|
46
54
|
```bash
|
|
47
|
-
commitgen (-c/-
|
|
55
|
+
commitgen (-c/-cp)
|
|
48
56
|
```
|
|
49
57
|
|
|
50
58
|
The command will:
|
|
@@ -18,6 +18,14 @@ pip install commitmessagegenerator
|
|
|
18
18
|
|
|
19
19
|
## ⚙️ Configuring
|
|
20
20
|
|
|
21
|
+
```bash
|
|
22
|
+
commitgen -cf
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Run this and type you API key to the terminal so the package creates the .env file and automatically adds it to the .gitignore
|
|
26
|
+
|
|
27
|
+
Or do it manually:
|
|
28
|
+
|
|
21
29
|
## IMPORTANT - BEFORE CREATING THIS FILE ADD '.venv' TO YOUR .gitignore SO YOUR API KEY ISN'T EXPOSED
|
|
22
30
|
|
|
23
31
|
Create a `.env` file in the directory where you will run commitgen (usually the root of your Git project):
|
|
@@ -31,7 +39,7 @@ GEMINI_API_KEY=your-gemini-api-key
|
|
|
31
39
|
With the terminal, inside any Git repository with pending changes, run:
|
|
32
40
|
|
|
33
41
|
```bash
|
|
34
|
-
commitgen (-c/-
|
|
42
|
+
commitgen (-c/-cp)
|
|
35
43
|
```
|
|
36
44
|
|
|
37
45
|
The command will:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: commitmessagegenerator
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Generate commit messages with AI (Google Gemini) automatically using `git diff`.
|
|
5
5
|
Author-email: Gabriel Terceiro <gcarolinoterceiro@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -31,6 +31,14 @@ pip install commitmessagegenerator
|
|
|
31
31
|
|
|
32
32
|
## ⚙️ Configuring
|
|
33
33
|
|
|
34
|
+
```bash
|
|
35
|
+
commitgen -cf
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Run this and type you API key to the terminal so the package creates the .env file and automatically adds it to the .gitignore
|
|
39
|
+
|
|
40
|
+
Or do it manually:
|
|
41
|
+
|
|
34
42
|
## IMPORTANT - BEFORE CREATING THIS FILE ADD '.venv' TO YOUR .gitignore SO YOUR API KEY ISN'T EXPOSED
|
|
35
43
|
|
|
36
44
|
Create a `.env` file in the directory where you will run commitgen (usually the root of your Git project):
|
|
@@ -44,7 +52,7 @@ GEMINI_API_KEY=your-gemini-api-key
|
|
|
44
52
|
With the terminal, inside any Git repository with pending changes, run:
|
|
45
53
|
|
|
46
54
|
```bash
|
|
47
|
-
commitgen (-c/-
|
|
55
|
+
commitgen (-c/-cp)
|
|
48
56
|
```
|
|
49
57
|
|
|
50
58
|
The command will:
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "commitmessagegenerator"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.3.0"
|
|
8
8
|
description = "Generate commit messages with AI (Google Gemini) automatically using `git diff`."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
File without changes
|
{commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{commitmessagegenerator-1.2.5 → commitmessagegenerator-1.3.0}/commitmessagegenerator/configure.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|