Auto-commit: 2025-08=06 13:58:23

This commit is contained in:
Core_kingdom
2025-08-06 13:58:23 +08:00
parent 163d200aae
commit 49a4779421

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
COMMIT_MSG ?= "Auto-commit: $(shell date '+%Y-%m=%d %H:%M:%S')"
#--------------------------------------------------------------
help:
@echo "usage: "
@echo "make git"
@echo "make git msg='...'"
@echo "make help "
#-------------------------------------------------------------
git:
git status
git add .
git commit -m $(COMMIT_MSG)
git push origin master
.PHONY: git help