nixos-greynix/update.sh
2025-01-16 06:34:27 +08:00

10 lines
199 B
Bash
Executable file

# add things to git
COMMIT_MSG="Update NixOS config."
echo "commit message?"
read $COMMIT_MSG
echo "this is what they wrote: $COMMIT_MSG"
git add .
git commit -m "$COMMIT_MSG"
git push origin main