dev-env/bin/git
2024-08-04 21:31:58 +02:00

12 lines
95 B
Bash
Executable File

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