8 lines
115 B
Bash
Executable file
8 lines
115 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cd "${NOTES_PATH}" || exit
|
|
git add -A
|
|
git commit -m Updates
|
|
git pull && git push
|
|
cd - || exit
|