OcttKB/local.sh

15 lines
145 B
Bash
Executable File

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