diff --git a/.config/fish/functions/gac.fish b/.config/fish/functions/gac.fish new file mode 100644 index 00000000..93f59701 --- /dev/null +++ b/.config/fish/functions/gac.fish @@ -0,0 +1,4 @@ +function gac --description 'git add and commit' + git add . + git commit $argv +end