From fdceea44d6c9303fd0301064c4c53c8db2ec2c22 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 5 Dec 2024 14:55:32 +0100 Subject: [PATCH] add just push to justfile for more git automation --- justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/justfile b/justfile index a6da660..887be5e 100644 --- a/justfile +++ b/justfile @@ -13,3 +13,8 @@ update: clean: sudo nix-collect-garbage sudo nix-store --optimise + +push: + git add * + read -p "Commit message: " -r message && git commit -m "$message" + git push