Files
dots/common/.config/fish/functions/gcap.fish
T
2026-08-13 01:11:41 +02:00

6 lines
134 B
Fish

function gcap --description 'Git add, commit with message, and push'
git add .
and git commit -m "$argv"
and git push
end