mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2024-12-11 07:56:01 +01:00
15 lines
145 B
Bash
Executable File
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
|