OcttKB/local.sh

15 lines
137 B
Bash
Raw Normal View History

2023-03-04 23:12:24 +01:00
#!/bin/sh
cd "$( dirname "$( realpath "$0" )" )"
pull() {
git pull
}
push() {
git add .
git commit -m "Manual push"
git push
}
$1