9 lines
148 B
Bash
Executable file
9 lines
148 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# TODO: warn on merge conflicts?
|
|
cd "${NOTES_PATH}" || exit
|
|
git add -A
|
|
git commit -m Updates
|
|
git pull && git push
|
|
cd - || exit
|