fish: Add some git aliases

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2025-05-21 15:12:39 +03:00
parent 8d4778c90f
commit 7e4325b8bd
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D

View file

@ -39,6 +39,10 @@
"gc" = "git commit --verbose --gpg-sign --signoff"; "gc" = "git commit --verbose --gpg-sign --signoff";
"gc!" = "git commit --verbose --gpg-sign --signoff --amend"; "gc!" = "git commit --verbose --gpg-sign --signoff --amend";
"gst" = "git status"; "gst" = "git status";
"gd" = "git diff";
"grbi" = "git rebase -i";
"grba" = "git rebase --abort";
"grbc" = "git rebase --continue";
"gdca" = "git diff --cached"; "gdca" = "git diff --cached";
"gapa" = "git add --patched"; "gapa" = "git add --patched";
"glola" = "git log --graph --pretty=\"%G?-%C(magenta)%h %C(yellow)(%al)%C(cyan): %s\" --color=always"; "glola" = "git log --graph --pretty=\"%G?-%C(magenta)%h %C(yellow)(%al)%C(cyan): %s\" --color=always";