devcommit 0.1.4.8__tar.gz → 0.1.4.9__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.
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/PKG-INFO +1 -1
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/main.py +1 -1
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/utils/git.py +2 -7
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/pyproject.toml +1 -1
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/COPYING +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/README.md +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/__init__.py +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/app/__init__.py +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/app/ai_providers.py +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/app/gemini_ai.py +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/app/prompt.py +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/utils/__init__.py +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/utils/logger.py +0 -0
- {devcommit-0.1.4.8 → devcommit-0.1.4.9}/devcommit/utils/parser.py +0 -0
|
@@ -261,7 +261,7 @@ def stage_changes(console):
|
|
|
261
261
|
spinner="dots",
|
|
262
262
|
spinner_style="cyan"
|
|
263
263
|
):
|
|
264
|
-
subprocess.run(["git", "add", "--
|
|
264
|
+
subprocess.run(["git", "add", "--all"], check=True)
|
|
265
265
|
|
|
266
266
|
|
|
267
267
|
def detect_staged_files(console, exclude_files):
|
|
@@ -56,13 +56,8 @@ def get_default_excludes() -> List[str]:
|
|
|
56
56
|
except:
|
|
57
57
|
pass
|
|
58
58
|
|
|
59
|
-
#
|
|
60
|
-
return [
|
|
61
|
-
'package-lock.json',
|
|
62
|
-
'pnpm-lock.yaml',
|
|
63
|
-
'yarn.lock',
|
|
64
|
-
'*.lock'
|
|
65
|
-
]
|
|
59
|
+
# No default exclusions; rely entirely on user configuration.
|
|
60
|
+
return []
|
|
66
61
|
|
|
67
62
|
|
|
68
63
|
# Get default files to exclude (can be overridden via config)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|