feat(gitutils): add git pn alias for push --no-verify - #13
Merged
Conversation
Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add "git pn" alias for "git push --no-verify" command
feat(gitutils): add git pn alias for push --no-verify
Sep 20, 2025
Copilot stopped work on behalf of
tomgrv due to an error
September 20, 2025 19:21
tomgrv
approved these changes
Sep 21, 2025
tomgrv
marked this pull request as ready for review
September 22, 2025 16:24
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds a new git pn alias that provides a convenient shortcut for git push --no-verify, allowing developers to bypass pre-push hooks when needed.
- Added "pn" alias configuration to alias.json with appropriate command and help text
- Updated README.md documentation to include the new alias description
- Maintained consistency with existing alias structure and alphabetical ordering
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/gitutils/alias.json | Added "pn" alias configuration for git push --no-verify |
| src/gitutils/README.md | Added documentation for the new "pn" alias in alphabetical order |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
tomgrv
added a commit
that referenced
this pull request
Sep 23, 2025
* Initial plan * feat(gitutils): add git pn alias for push --no-verify Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a new
git pnalias to the gitutils devcontainer feature that executesgit push --no-verify, providing developers with a convenient shortcut to bypass pre-push hooks when needed.Changes Made
alias.json: Configured to executegit push --no-verifywith appropriate help textUsage
Once the gitutils feature is installed in a devcontainer, developers can use:
git pn # Equivalent to: git push --no-verifyThis streamlines the workflow for cases where developers need to quickly push changes while bypassing pre-push hooks, such as during debugging or when dealing with legacy codebases.
Testing
Fixes #12.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.