dev-env/bin/git
2024-12-08 21:22:49 +01:00

12 lines
95 B
Bash

#!/bin/bash
acp() {
git add .
git commit -m "$@"
git push
}
co() {
git checkout $1
}