mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2024-12-12 16:39:37 +01:00
15 lines
137 B
Bash
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
|