Manual push

This commit is contained in:
2023-03-04 23:12:24 +01:00
parent 7c677c0b47
commit adc78228e3
11 changed files with 81 additions and 11 deletions

14
local.sh Normal file
View File

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