7 lines
153 B
Bash
Executable file
7 lines
153 B
Bash
Executable file
# add things to git
|
|
COMMIT_MSG="Update NixOS config."
|
|
echo "commit message?"
|
|
read $COMMIT_MSG
|
|
git add .
|
|
git commit -m "$COMMIT_MSG"
|
|
git push origin main
|