nixos-macbookpro/update.sh

10 lines
164 B
Bash
Raw Permalink Normal View History

2025-06-02 21:14:01 +08:00
# add things to git
COMMIT_MSG="Update NixOS config."
echo "Commit message?"
read COMMIT_MSG
echo "OK!"
git add .
git commit -m "$COMMIT_MSG"
git push origin main