This commit is contained in:
2026-08-09 09:30:28 +02:00
parent 0f1c1da672
commit ac8e492aff
2 changed files with 15 additions and 3 deletions
+13 -2
View File
@@ -13,8 +13,19 @@
(let ((line (read-line)))
(set! line (string-trim line))
(run '(git add -A))
(run (append '(git "commit" -m ) (list line))))
(run (append '(git "commit" -m ) (list line)))
(run '(git push))
)
)
(target push
(run '(git push)))
(target status
(run '(git status)))
(target pull
(run '(git pull)))