2025-01-30T01:41:18

This commit is contained in:
2025-01-30 01:41:18 +09:00
parent 75cf69e82f
commit e7ee682f16
13 changed files with 908 additions and 0 deletions

10
app.sh Executable file
View File

@@ -0,0 +1,10 @@
#! /usr/bin/env bash
case $1 in
gitup)
echo "Pushing to git"
git add -A
git commit -m $(date "+%Y-%m-%dT%H:%M:%S")
git push origin
;;
esac