Skip to content

Commit 7dcbe96

Browse files
authored
🔀 Merge pull request #26 from Brar/GCNBANG
Add gcn! for git commit -v --no-edit --amend
2 parents 58248b4 + 83c5d06 commit 7dcbe96

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/aliases.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ function gc {
7171
function gc! {
7272
git commit -v --amend $args
7373
}
74+
function gcn! {
75+
git commit -v --no-edit --amend $args
76+
}
7477
function gca {
7578
git commit -v -a $args
7679
}

src/git-aliases.psm1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ $FunctionsToExport = @(
2222
'gbss',
2323
'gc',
2424
'gc!',
25+
'gcn!',
2526
'gca',
2627
'gcam',
2728
'gca!',

0 commit comments

Comments
 (0)