diff --git a/.config/fish/functions/ga.fish b/.config/fish/functions/ga.fish deleted file mode 100644 index b4a99e8..0000000 --- a/.config/fish/functions/ga.fish +++ /dev/null @@ -1,3 +0,0 @@ -function ga - git commit -a $argv -end diff --git a/.config/fish/functions/gad.fish b/.config/fish/functions/gad.fish deleted file mode 100644 index 3002c18..0000000 --- a/.config/fish/functions/gad.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gad - git add $argv -end diff --git a/.config/fish/functions/gb.fish b/.config/fish/functions/gb.fish deleted file mode 100644 index a368344..0000000 --- a/.config/fish/functions/gb.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gb - git branch $argv -end diff --git a/.config/fish/functions/gc.fish b/.config/fish/functions/gc.fish deleted file mode 100644 index cea3d55..0000000 --- a/.config/fish/functions/gc.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gc - git commit $argv -end diff --git a/.config/fish/functions/gca.fish b/.config/fish/functions/gca.fish deleted file mode 100644 index 55f78d3..0000000 --- a/.config/fish/functions/gca.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gca - git commit --amend $argv -end diff --git a/.config/fish/functions/gch.fish b/.config/fish/functions/gch.fish deleted file mode 100644 index 20e7a26..0000000 --- a/.config/fish/functions/gch.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gch - git checkout $argv -end diff --git a/.config/fish/functions/gcl.fish b/.config/fish/functions/gcl.fish deleted file mode 100644 index 362b768..0000000 --- a/.config/fish/functions/gcl.fish +++ /dev/null @@ -1,4 +0,0 @@ -# Defined in /tmp/fish.t8Y7sg/gcl.fish @ line 2 -function gcl - git gc --aggressive --prune=now -end diff --git a/.config/fish/functions/gg.fish b/.config/fish/functions/gg.fish deleted file mode 100644 index 38deafc..0000000 --- a/.config/fish/functions/gg.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gg - git clone $argv -end diff --git a/.config/fish/functions/gl.fish b/.config/fish/functions/gl.fish deleted file mode 100644 index 410b14d..0000000 --- a/.config/fish/functions/gl.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gl - git log $argv -end diff --git a/.config/fish/functions/gp.fish b/.config/fish/functions/gp.fish deleted file mode 100644 index c8a5dca..0000000 --- a/.config/fish/functions/gp.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gp - git pull $argv -end diff --git a/.config/fish/functions/gpu.fish b/.config/fish/functions/gpu.fish deleted file mode 100644 index 09b7306..0000000 --- a/.config/fish/functions/gpu.fish +++ /dev/null @@ -1,4 +0,0 @@ -# Defined in /home/glados/.config/fish/functions/gpu.fish @ line 1 -function gpu - git push $argv -end diff --git a/.config/fish/functions/gpue.fish b/.config/fish/functions/gpue.fish deleted file mode 100644 index 63a511b..0000000 --- a/.config/fish/functions/gpue.fish +++ /dev/null @@ -1,4 +0,0 @@ -# Defined in /tmp/fish.lGSA7G/gpue.fish @ line 1 -function gpue - gpu $argv; exit -end diff --git a/.config/fish/functions/gpuf.fish b/.config/fish/functions/gpuf.fish deleted file mode 100644 index d456d66..0000000 --- a/.config/fish/functions/gpuf.fish +++ /dev/null @@ -1,4 +0,0 @@ -# Defined in /tmp/fish.RX2lTd/gpuf.fish @ line 1 -function gpuf - gpu -f $argv -end diff --git a/.config/fish/functions/gr.fish b/.config/fish/functions/gr.fish deleted file mode 100644 index 63722cf..0000000 --- a/.config/fish/functions/gr.fish +++ /dev/null @@ -1,4 +0,0 @@ -# Defined in /tmp/fish.4ITsNE/gr.fish @ line 1 -function gr - git reset --hard -end diff --git a/.config/fish/functions/gs.fish b/.config/fish/functions/gs.fish deleted file mode 100644 index 2251572..0000000 --- a/.config/fish/functions/gs.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gs - git status $argv -end diff --git a/.config/fish/functions/gsu.fish b/.config/fish/functions/gsu.fish deleted file mode 100644 index 21e7be6..0000000 --- a/.config/fish/functions/gsu.fish +++ /dev/null @@ -1,4 +0,0 @@ -function gsu - git submodule update --init --recursive - git submodule foreach git pull origin master -end diff --git a/.config/fish/functions/gw.fish b/.config/fish/functions/gw.fish deleted file mode 100644 index c3a392e..0000000 --- a/.config/fish/functions/gw.fish +++ /dev/null @@ -1,3 +0,0 @@ -function gw - git clean -fdx -end diff --git a/.gitconfig b/.gitconfig index 69ec975..b73b7eb 100644 --- a/.gitconfig +++ b/.gitconfig @@ -30,3 +30,20 @@ insteadOf = "gl:" [color] ui = auto +[alias] + a = commit -a + ad = add + b = branch + c = commit + ca = commit --amend + ch = checkout + cl = gc --aggressive --prune=now + g = clone + l = log + p = pull + pu = push + puf = push -f + r = reset --hard + s = status + su = submodule update --init --recursive + w = clean -fdx