OcttKB/local.sh
2023-03-04 23:12:24 +01:00

15 lines
137 B
Bash

#!/bin/sh
cd "$( dirname "$( realpath "$0" )" )"
pull() {
git pull
}
push() {
git add .
git commit -m "Manual push"
git push
}
$1