Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/gitutils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ The following aliases are provided to enhance your Git workflow:
- `git isDirty <file>` - Check if the specified file has uncommitted changes.
- `git isFixup` - Check if the last commit is a fixup commit.
- `git isRebase` - Check if a rebase is in progress.
- `git pn` - Push without running pre-push hooks.
- `git prod` - Finish a release or hotfix branch using Git Flow.
- `git recallId <key>` - Set the Git user name and email to the author of the last commit.
- `git renameTag <old> <new>` - Rename a tag.
Expand Down
4 changes: 4 additions & 0 deletions src/gitutils/alias.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@
"cmd": "git push --force-with-lease $1",
"help": "Push with force-with-lease."
},
"pn": {
"cmd": "git push --no-verify",
"help": "Push without running pre-push hooks."
},
"prod": {
"cmd": "git release-prod",
"help": "Run release-prod command."
Expand Down