git-commitflow 1.1.4__tar.gz → 1.1.5__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.
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/PKG-INFO +2 -2
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/README.md +1 -1
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow/__init__.py +1 -1
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow/cache_file.py +1 -1
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow/git_commitflow.py +1 -2
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow/helpers.py +1 -1
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow/readline_manager.py +1 -1
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow.egg-info/PKG-INFO +2 -2
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/setup.py +2 -2
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/LICENSE +0 -0
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow.egg-info/SOURCES.txt +0 -0
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow.egg-info/dependency_links.txt +0 -0
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow.egg-info/entry_points.txt +0 -0
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow.egg-info/requires.txt +0 -0
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/git_commitflow.egg-info/top_level.txt +0 -0
- {git_commitflow-1.1.4 → git_commitflow-1.1.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: git-commitflow
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.5
|
|
4
4
|
Summary: A git add/commit/push helper
|
|
5
5
|
Home-page: https://github.com/jamescherti/git-commitflow
|
|
6
6
|
Author: James Cherti
|
|
@@ -120,7 +120,7 @@ With these aliases, you can conveniently use the commands `git ci` to commit cha
|
|
|
120
120
|
|
|
121
121
|
## License
|
|
122
122
|
|
|
123
|
-
Copyright (c) 2020-
|
|
123
|
+
Copyright (c) 2020-2026 [James Cherti](https://www.jamescherti.com)
|
|
124
124
|
|
|
125
125
|
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
126
126
|
|
|
@@ -86,7 +86,7 @@ With these aliases, you can conveniently use the commands `git ci` to commit cha
|
|
|
86
86
|
|
|
87
87
|
## License
|
|
88
88
|
|
|
89
|
-
Copyright (c) 2020-
|
|
89
|
+
Copyright (c) 2020-2026 [James Cherti](https://www.jamescherti.com)
|
|
90
90
|
|
|
91
91
|
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
92
92
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2020-
|
|
3
|
+
# Copyright (c) 2020-2026 James Cherti
|
|
4
4
|
# URL: https://github.com/jamescherti/git-commitflow
|
|
5
5
|
#
|
|
6
6
|
# This program is free software: you can redistribute it and/or modify it under
|
|
@@ -365,7 +365,6 @@ class GitCommitFlow:
|
|
|
365
365
|
|
|
366
366
|
subprocess.check_call(["git", "status"])
|
|
367
367
|
print(f"Git repo: {Fore.YELLOW}{self.git_repo_dir}{Fore.RESET}")
|
|
368
|
-
print()
|
|
369
368
|
|
|
370
369
|
git_name = self.git_config_get("user.name", "Unknown")
|
|
371
370
|
git_email = self.git_config_get("user.email", "unknown@domain.ext")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: git-commitflow
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.5
|
|
4
4
|
Summary: A git add/commit/push helper
|
|
5
5
|
Home-page: https://github.com/jamescherti/git-commitflow
|
|
6
6
|
Author: James Cherti
|
|
@@ -120,7 +120,7 @@ With these aliases, you can conveniently use the commands `git ci` to commit cha
|
|
|
120
120
|
|
|
121
121
|
## License
|
|
122
122
|
|
|
123
|
-
Copyright (c) 2020-
|
|
123
|
+
Copyright (c) 2020-2026 [James Cherti](https://www.jamescherti.com)
|
|
124
124
|
|
|
125
125
|
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
126
126
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
#
|
|
3
|
-
# Copyright (c) 2020-
|
|
3
|
+
# Copyright (c) 2020-2026 James Cherti
|
|
4
4
|
# URL: https://github.com/jamescherti/git-commitflow
|
|
5
5
|
#
|
|
6
6
|
# This program is free software: you can redistribute it and/or modify it under
|
|
@@ -23,7 +23,7 @@ from setuptools import find_packages, setup
|
|
|
23
23
|
|
|
24
24
|
setup(
|
|
25
25
|
name="git-commitflow",
|
|
26
|
-
version="1.1.
|
|
26
|
+
version="1.1.5",
|
|
27
27
|
packages=find_packages(),
|
|
28
28
|
description="A git add/commit/push helper",
|
|
29
29
|
long_description=((Path(__file__).parent.resolve().joinpath("README.md"))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|