dotfiles/.config/fish/functions/gac.fish

4 lines
87 B
Fish

function gac --description 'git add and commit'
git add .
git commit $argv
end