2025-02-05T17:57:41

This commit is contained in:
2025-02-05 17:57:41 +09:00
parent a74d9fcb68
commit 111c9dde89
2 changed files with 4 additions and 1 deletions

12
app.sh Executable file
View File

@@ -0,0 +1,12 @@
#! /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
;;
*)
code .
esac