-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add 'git info' command to display repository details
- Implement 'git info' command in gcop/__main__.py - Update docs/guide/commands.md with new command details - Update docs/guide/quick-start.md with usage examples - Add docs/images/git-info.png for visual reference - Update pyproject.toml to reflect version bump The 'git info' command provides a comprehensive overview of the current git repository, including project name, branch, latest commit, contributor statistics, file changes, and more. This feature enhances project management and code review processes by offering detailed insights into the repository's structure and history.
- Loading branch information
1 parent
1b93b94
commit 28eb1bd
Showing
5 changed files
with
292 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ requires = ["poetry-core"] | |
|
||
[tool.poetry] | ||
name = "gcop" | ||
version = "1.3.2" | ||
version = "1.4.0" | ||
description = "gcop is your git AI copilot." | ||
readme = "README.md" | ||
authors = ["gcop <[email protected]>"] | ||
|