add just push to justfile for more git automation

This commit is contained in:
Lillian Violet 2024-12-05 14:55:32 +01:00
parent eebdbe7581
commit fdceea44d6

View file

@ -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