diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2025-09-12 21:58:24 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2025-09-12 21:59:10 -0500 |
commit | 59e19225f2f199855f794f6ac175ff14226916cd (patch) | |
tree | 8c14ec80257d3ffdba6c2def69961fbbaa286910 /zscripts/nicegit.zsh | |
parent | 8600c1fecaf71898dba0721398e26148bfbb6e78 (diff) | |
parent | 973dfaf6058981914d13bbcdb4467f4c9aa13ffa (diff) | |
download | zsh-59e19225f2f199855f794f6ac175ff14226916cd.tar.xz zsh-59e19225f2f199855f794f6ac175ff14226916cd.zip |
Merge branch 'master' of zsh
Diffstat (limited to 'zscripts/nicegit.zsh')
-rwxr-xr-x | zscripts/nicegit.zsh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/zscripts/nicegit.zsh b/zscripts/nicegit.zsh index 3538284..e191bd0 100755 --- a/zscripts/nicegit.zsh +++ b/zscripts/nicegit.zsh @@ -24,6 +24,13 @@ function gc() { git commit -m "$commit" } +function gcf() { + issue="$1" + [ -z "$issue" ] && return + shift + gc "$@\n\nfixes: $issue" +} + function __is_diff() { ! git diff --quiet HEAD $REF -- $DIR } |