fish: Add the most commonly used git aliases

This commit is contained in:
Sanchayan Maity 2021-12-14 11:54:30 +05:30
parent de0a69ee11
commit f839a3bfff
4 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,3 @@
function gd
git diff
end

View File

@ -0,0 +1,4 @@
function gl
git log --stat -n 100
end

View File

@ -0,0 +1,3 @@
function glp
git log -p --stat -n 100
end

View File

@ -0,0 +1,3 @@
function gs
git status --verbose
end