nixos-greynix/update.sh

8 lines
153 B
Bash
Raw Normal View History

2024-11-10 20:28:45 +08:00
# add things to git
2025-01-16 06:32:20 +08:00
COMMIT_MSG="Update NixOS config."
echo "commit message?"
read $COMMIT_MSG
2024-11-10 20:28:45 +08:00
git add .
2025-01-16 06:32:20 +08:00
git commit -m "$COMMIT_MSG"
2024-11-10 20:28:45 +08:00
git push origin main