add bash scripts for git operations and Lombok documentation

This commit is contained in:
2025-03-01 10:58:36 +09:00
parent 3fd3f895fc
commit f63e3fd52a
9 changed files with 2344 additions and 0 deletions

13
app.sh Executable file
View File

@@ -0,0 +1,13 @@
#! /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
;;
*)
echo "Launching editor"
code .
esac