Skip to content
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ gunwip # restore work in progress
| ------------ | ---------------------------------------------------- |
| gc | `git commit -v` |
| gc! | `git commit -v --amend` |
| gcn! | `git commit -v --no-edit --amend` |
| gcn! | `git commit --no-edit --amend` |
| gca | `git commit -v -a` |
| gca! | `git commit -v -a --amend` |
| gcan! | `git commit -v -a --no-edit --amend` |
| gcan! | `git commit -a --no-edit --amend` |
| gcv | `git commit -v --no-verify` |
| gcav | `git commit -a -v --no-verify` |
| gcav! | `git commit -a -v --no-verify --amend` |
Expand Down
4 changes: 2 additions & 2 deletions functions/__git.init.fish
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ function __git.init
__git.create_abbr gbss git bisect start
__git.create_abbr gc git commit -v
__git.create_abbr gc! git commit -v --amend
__git.create_abbr gcn! git commit -v --no-edit --amend
__git.create_abbr gcn! git commit --no-edit --amend
__git.create_abbr gca git commit -v -a
__git.create_abbr gca! git commit -v -a --amend
__git.create_abbr gcan! git commit -v -a --no-edit --amend
__git.create_abbr gcan! git commit -a --no-edit --amend
__git.create_abbr gcv git commit -v --no-verify
__git.create_abbr gcav git commit -a -v --no-verify
__git.create_abbr gcav! git commit -a -v --no-verify --amend
Expand Down