git-auto-pro 1.1.1__tar.gz → 2.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.
- git_auto_pro-2.0.0/.editorconfig +46 -0
- git_auto_pro-2.0.0/.gitattributes +34 -0
- git_auto_pro-2.0.0/.gitignore +149 -0
- git_auto_pro-2.0.0/.pre-commit-config.yaml +74 -0
- git_auto_pro-2.0.0/CHANGELOG.md +150 -0
- git_auto_pro-2.0.0/CONTRIBUTING.md +444 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/LICENSE +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/PKG-INFO +59 -1
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/README.md +58 -0
- git_auto_pro-2.0.0/SETUP_GUIDE.md +528 -0
- git_auto_pro-2.0.0/docs/api.md +229 -0
- git_auto_pro-2.0.0/docs/examples.md +280 -0
- git_auto_pro-2.0.0/docs/troubleshooting.md +245 -0
- git_auto_pro-2.0.0/docs/usage.md +256 -0
- git_auto_pro-2.0.0/examples/advanced_usage.py +159 -0
- git_auto_pro-2.0.0/examples/basic_usage.py +46 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/__init__.py +1 -1
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/backup.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/cli.py +144 -4
- git_auto_pro-2.0.0/git_auto_pro/commands/__init__.py +1 -0
- git_auto_pro-2.0.0/git_auto_pro/commands/doctor.py +135 -0
- git_auto_pro-2.0.0/git_auto_pro/commands/release.py +259 -0
- git_auto_pro-2.0.0/git_auto_pro/commands/safe_flow.py +145 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/config.py +4 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/git_commands.py +103 -2
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/github.py +52 -11
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/github_issues.py +15 -3
- git_auto_pro-2.0.0/git_auto_pro/github_pr/__init__.py +1 -0
- git_auto_pro-2.0.0/git_auto_pro/github_pr/pr_manager.py +254 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/gitignore_manager.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/__init__.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/github_templates.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/gitignore.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/hooks.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/license.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/project.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/readme.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/templates.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro/scaffolding/workflows.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro.egg-info/PKG-INFO +59 -1
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro.egg-info/SOURCES.txt +31 -1
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/pyproject.toml +2 -2
- git_auto_pro-2.0.0/requirements-dev.txt +23 -0
- git_auto_pro-2.0.0/requirements.txt +7 -0
- git_auto_pro-2.0.0/scripts/build.sh +33 -0
- git_auto_pro-2.0.0/scripts/install.sh +26 -0
- git_auto_pro-2.0.0/scripts/test.sh +16 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/setup.py +2 -2
- git_auto_pro-2.0.0/tests/__init__.py +1 -0
- git_auto_pro-2.0.0/tests/conftest.py +53 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/tests/test_cli.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/tests/test_config.py +0 -0
- git_auto_pro-2.0.0/tests/test_doctor.py +77 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/tests/test_git_commands.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/tests/test_github.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/tests/test_github_issues.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/tests/test_gitignore_manager.py +0 -0
- git_auto_pro-2.0.0/tests/test_release.py +132 -0
- git_auto_pro-2.0.0/tests/test_safe_flow.py +93 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/tests/test_scaffolding.py +0 -0
- git_auto_pro-2.0.0/tests/test_undo.py +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro.egg-info/dependency_links.txt +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro.egg-info/entry_points.txt +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro.egg-info/requires.txt +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/git_auto_pro.egg-info/top_level.txt +0 -0
- {git_auto_pro-1.1.1 → git_auto_pro-2.0.0}/setup.cfg +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# EditorConfig is awesome: https://EditorConfig.org
|
|
2
|
+
|
|
3
|
+
# top-most EditorConfig file
|
|
4
|
+
root = true
|
|
5
|
+
|
|
6
|
+
# Unix-style newlines with a newline ending every file
|
|
7
|
+
[*]
|
|
8
|
+
end_of_line = lf
|
|
9
|
+
insert_final_newline = true
|
|
10
|
+
charset = utf-8
|
|
11
|
+
trim_trailing_whitespace = true
|
|
12
|
+
|
|
13
|
+
# Python files
|
|
14
|
+
[*.py]
|
|
15
|
+
indent_style = space
|
|
16
|
+
indent_size = 4
|
|
17
|
+
max_line_length = 100
|
|
18
|
+
|
|
19
|
+
# YAML files
|
|
20
|
+
[*.{yml,yaml}]
|
|
21
|
+
indent_style = space
|
|
22
|
+
indent_size = 2
|
|
23
|
+
|
|
24
|
+
# JSON files
|
|
25
|
+
[*.json]
|
|
26
|
+
indent_style = space
|
|
27
|
+
indent_size = 2
|
|
28
|
+
|
|
29
|
+
# Markdown files
|
|
30
|
+
[*.md]
|
|
31
|
+
trim_trailing_whitespace = false
|
|
32
|
+
max_line_length = off
|
|
33
|
+
|
|
34
|
+
# Shell scripts
|
|
35
|
+
[*.sh]
|
|
36
|
+
indent_style = space
|
|
37
|
+
indent_size = 2
|
|
38
|
+
|
|
39
|
+
# Makefile
|
|
40
|
+
[Makefile]
|
|
41
|
+
indent_style = tab
|
|
42
|
+
|
|
43
|
+
# Package files
|
|
44
|
+
[{package.json,*.lock}]
|
|
45
|
+
indent_style = space
|
|
46
|
+
indent_size = 2
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Auto detect text files and perform LF normalization
|
|
2
|
+
* text=auto
|
|
3
|
+
|
|
4
|
+
# Python files
|
|
5
|
+
*.py text eol=lf
|
|
6
|
+
|
|
7
|
+
# Shell scripts
|
|
8
|
+
*.sh text eol=lf
|
|
9
|
+
|
|
10
|
+
# Windows scripts
|
|
11
|
+
*.bat text eol=crlf
|
|
12
|
+
*.cmd text eol=crlf
|
|
13
|
+
|
|
14
|
+
# Markdown
|
|
15
|
+
*.md text eol=lf
|
|
16
|
+
|
|
17
|
+
# YAML
|
|
18
|
+
*.yml text eol=lf
|
|
19
|
+
*.yaml text eol=lf
|
|
20
|
+
|
|
21
|
+
# JSON
|
|
22
|
+
*.json text eol=lf
|
|
23
|
+
|
|
24
|
+
# Documentation
|
|
25
|
+
*.txt text eol=lf
|
|
26
|
+
LICENSE text eol=lf
|
|
27
|
+
README text eol=lf
|
|
28
|
+
|
|
29
|
+
# Archives
|
|
30
|
+
*.zip binary
|
|
31
|
+
*.tar binary
|
|
32
|
+
*.gz binary
|
|
33
|
+
*.tgz binary
|
|
34
|
+
*.7z binary
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
*.manifest
|
|
31
|
+
*.spec
|
|
32
|
+
|
|
33
|
+
# Installer logs
|
|
34
|
+
pip-log.txt
|
|
35
|
+
pip-delete-this-directory.txt
|
|
36
|
+
|
|
37
|
+
# Unit test / coverage reports
|
|
38
|
+
htmlcov/
|
|
39
|
+
.tox/
|
|
40
|
+
.nox/
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.cache
|
|
44
|
+
nosetests.xml
|
|
45
|
+
coverage.xml
|
|
46
|
+
*.cover
|
|
47
|
+
*.py,cover
|
|
48
|
+
.hypothesis/
|
|
49
|
+
.pytest_cache/
|
|
50
|
+
cover/
|
|
51
|
+
|
|
52
|
+
# Translations
|
|
53
|
+
*.mo
|
|
54
|
+
*.pot
|
|
55
|
+
|
|
56
|
+
# Django stuff:
|
|
57
|
+
*.log
|
|
58
|
+
local_settings.py
|
|
59
|
+
db.sqlite3
|
|
60
|
+
db.sqlite3-journal
|
|
61
|
+
|
|
62
|
+
# Flask stuff:
|
|
63
|
+
instance/
|
|
64
|
+
.webassets-cache
|
|
65
|
+
|
|
66
|
+
# Scrapy stuff:
|
|
67
|
+
.scrapy
|
|
68
|
+
|
|
69
|
+
# Sphinx documentation
|
|
70
|
+
docs/_build/
|
|
71
|
+
|
|
72
|
+
# PyBuilder
|
|
73
|
+
.pybuilder/
|
|
74
|
+
target/
|
|
75
|
+
|
|
76
|
+
# Jupyter Notebook
|
|
77
|
+
.ipynb_checkpoints
|
|
78
|
+
|
|
79
|
+
# IPython
|
|
80
|
+
profile_default/
|
|
81
|
+
ipython_config.py
|
|
82
|
+
|
|
83
|
+
# pyenv
|
|
84
|
+
.python-version
|
|
85
|
+
|
|
86
|
+
# pipenv
|
|
87
|
+
Pipfile.lock
|
|
88
|
+
|
|
89
|
+
# poetry
|
|
90
|
+
poetry.lock
|
|
91
|
+
|
|
92
|
+
# pdm
|
|
93
|
+
.pdm.toml
|
|
94
|
+
|
|
95
|
+
# PEP 582
|
|
96
|
+
__pypackages__/
|
|
97
|
+
|
|
98
|
+
# Celery stuff
|
|
99
|
+
celerybeat-schedule
|
|
100
|
+
celerybeat.pid
|
|
101
|
+
|
|
102
|
+
# SageMath parsed files
|
|
103
|
+
*.sage.py
|
|
104
|
+
|
|
105
|
+
# Environments
|
|
106
|
+
.env
|
|
107
|
+
.venv
|
|
108
|
+
env/
|
|
109
|
+
venv/
|
|
110
|
+
ENV/
|
|
111
|
+
env.bak/
|
|
112
|
+
venv.bak/
|
|
113
|
+
|
|
114
|
+
# Spyder project settings
|
|
115
|
+
.spyderproject
|
|
116
|
+
.spyproject
|
|
117
|
+
|
|
118
|
+
# Rope project settings
|
|
119
|
+
.ropeproject
|
|
120
|
+
|
|
121
|
+
# mkdocs documentation
|
|
122
|
+
/site
|
|
123
|
+
|
|
124
|
+
# mypy
|
|
125
|
+
.mypy_cache/
|
|
126
|
+
.dmypy.json
|
|
127
|
+
dmypy.json
|
|
128
|
+
|
|
129
|
+
# Pyre type checker
|
|
130
|
+
.pyre/
|
|
131
|
+
|
|
132
|
+
# pytype static type analyzer
|
|
133
|
+
.pytype/
|
|
134
|
+
|
|
135
|
+
# Cython debug symbols
|
|
136
|
+
cython_debug/
|
|
137
|
+
|
|
138
|
+
# IDEs
|
|
139
|
+
.vscode/
|
|
140
|
+
.idea/
|
|
141
|
+
*.swp
|
|
142
|
+
*.swo
|
|
143
|
+
*~
|
|
144
|
+
.DS_Store
|
|
145
|
+
|
|
146
|
+
# Project specific
|
|
147
|
+
*.log
|
|
148
|
+
.git-auto-config.json
|
|
149
|
+
"""
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Pre-commit hooks configuration
|
|
2
|
+
# Install: pip install pre-commit
|
|
3
|
+
# Setup: pre-commit install
|
|
4
|
+
# Run manually: pre-commit run --all-files
|
|
5
|
+
|
|
6
|
+
repos:
|
|
7
|
+
# General hooks
|
|
8
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
9
|
+
rev: v4.5.0
|
|
10
|
+
hooks:
|
|
11
|
+
- id: trailing-whitespace
|
|
12
|
+
- id: end-of-file-fixer
|
|
13
|
+
- id: check-yaml
|
|
14
|
+
- id: check-json
|
|
15
|
+
- id: check-added-large-files
|
|
16
|
+
args: ['--maxkb=1000']
|
|
17
|
+
- id: check-merge-conflict
|
|
18
|
+
- id: check-case-conflict
|
|
19
|
+
- id: check-docstring-first
|
|
20
|
+
- id: debug-statements
|
|
21
|
+
- id: mixed-line-ending
|
|
22
|
+
args: ['--fix=lf']
|
|
23
|
+
|
|
24
|
+
# Python code formatting
|
|
25
|
+
- repo: https://github.com/psf/black
|
|
26
|
+
rev: 23.11.0
|
|
27
|
+
hooks:
|
|
28
|
+
- id: black
|
|
29
|
+
language_version: python3
|
|
30
|
+
args: ['--line-length=100']
|
|
31
|
+
|
|
32
|
+
# Python linting
|
|
33
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
34
|
+
rev: v0.1.6
|
|
35
|
+
hooks:
|
|
36
|
+
- id: ruff
|
|
37
|
+
args: ['--fix', '--exit-non-zero-on-fix']
|
|
38
|
+
|
|
39
|
+
# Python import sorting
|
|
40
|
+
- repo: https://github.com/PyCQA/isort
|
|
41
|
+
rev: 5.12.0
|
|
42
|
+
hooks:
|
|
43
|
+
- id: isort
|
|
44
|
+
args: ['--profile', 'black', '--line-length', '100']
|
|
45
|
+
|
|
46
|
+
# Type checking
|
|
47
|
+
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
48
|
+
rev: v1.7.0
|
|
49
|
+
hooks:
|
|
50
|
+
- id: mypy
|
|
51
|
+
additional_dependencies: [types-all]
|
|
52
|
+
args: ['--ignore-missing-imports', '--no-strict-optional']
|
|
53
|
+
|
|
54
|
+
# Security checks
|
|
55
|
+
- repo: https://github.com/PyCQA/bandit
|
|
56
|
+
rev: 1.7.5
|
|
57
|
+
hooks:
|
|
58
|
+
- id: bandit
|
|
59
|
+
args: ['-c', 'pyproject.toml']
|
|
60
|
+
additional_dependencies: ['bandit[toml]']
|
|
61
|
+
|
|
62
|
+
# Markdown linting
|
|
63
|
+
- repo: https://github.com/igorshubovych/markdownlint-cli
|
|
64
|
+
rev: v0.37.0
|
|
65
|
+
hooks:
|
|
66
|
+
- id: markdownlint
|
|
67
|
+
args: ['--fix']
|
|
68
|
+
|
|
69
|
+
# YAML linting
|
|
70
|
+
- repo: https://github.com/adrienverge/yamllint
|
|
71
|
+
rev: v1.33.0
|
|
72
|
+
hooks:
|
|
73
|
+
- id: yamllint
|
|
74
|
+
args: ['-d', '{extends: default, rules: {line-length: disable}}']
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Initial release preparation
|
|
12
|
+
|
|
13
|
+
## [1.0.0] - 2026-01-03
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- GitHub authentication with secure keyring storage
|
|
17
|
+
- Repository creation and management
|
|
18
|
+
- Complete Git command automation
|
|
19
|
+
- Project scaffolding with multiple templates
|
|
20
|
+
- Interactive README, LICENSE, and .gitignore generators
|
|
21
|
+
- CI/CD workflow generation (GitHub Actions, GitLab CI)
|
|
22
|
+
- Git hooks management (pre-commit, pre-push, commit-msg)
|
|
23
|
+
- GitHub issue and PR template generation
|
|
24
|
+
- Collaboration features (add collaborators, branch protection)
|
|
25
|
+
- Repository backup and restore functionality
|
|
26
|
+
- Configuration system with persistent storage
|
|
27
|
+
- Repository statistics and analytics
|
|
28
|
+
- Support for Python 3.8+
|
|
29
|
+
- Comprehensive documentation
|
|
30
|
+
- 30+ CLI commands
|
|
31
|
+
- Beautiful terminal output with Rich library
|
|
32
|
+
|
|
33
|
+
### Features by Category
|
|
34
|
+
|
|
35
|
+
#### Authentication
|
|
36
|
+
- Secure token storage using OS-level keyring
|
|
37
|
+
- GitHub API token validation
|
|
38
|
+
- Cross-platform support (macOS, Windows, Linux)
|
|
39
|
+
|
|
40
|
+
#### Repository Management
|
|
41
|
+
- Create public/private repositories
|
|
42
|
+
- Set descriptions, topics, and homepage URLs
|
|
43
|
+
- Automatic remote configuration
|
|
44
|
+
- Branch protection rules
|
|
45
|
+
- Collaborator management
|
|
46
|
+
|
|
47
|
+
#### Git Operations
|
|
48
|
+
- Simplified Git commands
|
|
49
|
+
- Branch management (create, switch, delete, list)
|
|
50
|
+
- Stash operations
|
|
51
|
+
- Merge with various strategies
|
|
52
|
+
- Clone with shallow copy support
|
|
53
|
+
- Interactive status and log display
|
|
54
|
+
- Conventional commit support
|
|
55
|
+
|
|
56
|
+
#### Project Scaffolding
|
|
57
|
+
- Python project template
|
|
58
|
+
- Node.js project template
|
|
59
|
+
- C++ project template
|
|
60
|
+
- Rust project template
|
|
61
|
+
- Go project template
|
|
62
|
+
- Web project template
|
|
63
|
+
- Custom templates support
|
|
64
|
+
|
|
65
|
+
#### Generators
|
|
66
|
+
- Professional README templates
|
|
67
|
+
- Multiple license types (MIT, Apache, GPL, BSD, etc.)
|
|
68
|
+
- Language-specific .gitignore templates
|
|
69
|
+
- GitHub Actions workflows
|
|
70
|
+
- GitLab CI configuration
|
|
71
|
+
- Git hooks
|
|
72
|
+
- Issue and PR templates
|
|
73
|
+
|
|
74
|
+
#### Configuration
|
|
75
|
+
- Persistent configuration storage
|
|
76
|
+
- Customizable defaults
|
|
77
|
+
- Per-user settings
|
|
78
|
+
- Branch name configuration
|
|
79
|
+
- License type defaults
|
|
80
|
+
- Commit message templates
|
|
81
|
+
|
|
82
|
+
### Documentation
|
|
83
|
+
- Comprehensive README with examples
|
|
84
|
+
- Detailed setup guide
|
|
85
|
+
- Contributing guidelines
|
|
86
|
+
- API documentation
|
|
87
|
+
- Troubleshooting guide
|
|
88
|
+
- Complete file structure reference
|
|
89
|
+
|
|
90
|
+
### Testing
|
|
91
|
+
- Test structure prepared
|
|
92
|
+
- Example test cases included
|
|
93
|
+
- Coverage configuration
|
|
94
|
+
|
|
95
|
+
## [0.1.0] - Development
|
|
96
|
+
|
|
97
|
+
### Added
|
|
98
|
+
- Initial project structure
|
|
99
|
+
- Basic CLI framework
|
|
100
|
+
- Core functionality implementation
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## Release Notes
|
|
105
|
+
|
|
106
|
+
## [1.1.0] - 2026-01-04
|
|
107
|
+
|
|
108
|
+
### Added
|
|
109
|
+
- **Interactive .gitignore Manager** 🎉
|
|
110
|
+
- `git-auto ignore-manager` command
|
|
111
|
+
- Browse all project files with ignore status
|
|
112
|
+
- Select files to ignore with checkbox interface
|
|
113
|
+
- Add patterns by type (folder, extension, file, custom)
|
|
114
|
+
- Common presets (Python, Node.js, IDEs, Build artifacts, Logs)
|
|
115
|
+
- Remove patterns from .gitignore
|
|
116
|
+
- Clean already-tracked files from git
|
|
117
|
+
- Preview changes before saving
|
|
118
|
+
- Show current .gitignore patterns
|
|
119
|
+
|
|
120
|
+
### Enhanced
|
|
121
|
+
- Better file management workflow
|
|
122
|
+
- More user-friendly .gitignore creation
|
|
123
|
+
- Visual feedback for ignore status
|
|
124
|
+
|
|
125
|
+
### Features
|
|
126
|
+
- 34 commands (up from 33)
|
|
127
|
+
- 7 core modules (up from 6)
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## Future Releases
|
|
132
|
+
|
|
133
|
+
### [1.1.5] - Planned
|
|
134
|
+
- VS Code extension integration
|
|
135
|
+
- GitLab full support
|
|
136
|
+
- Bitbucket support
|
|
137
|
+
- Interactive TUI mode
|
|
138
|
+
- AI-powered commit messages
|
|
139
|
+
|
|
140
|
+
### [1.2.0] - Planned
|
|
141
|
+
- Plugin system for custom commands
|
|
142
|
+
- Team workspace management
|
|
143
|
+
- Advanced analytics dashboard
|
|
144
|
+
- Multi-repository operations
|
|
145
|
+
|
|
146
|
+
### [2.0.0] - Planned
|
|
147
|
+
- Major API redesign
|
|
148
|
+
- Performance improvements
|
|
149
|
+
- Extended language support
|
|
150
|
+
- Cloud integration features
|