eolas/_scripts/auto_save_mac.sh

31 lines
886 B
Bash
Raw Normal View History

2023-01-23 15:53:41 +00:00
#!/bin/bash
# This script automatically commits/pull changes to the remote repository with a generic commit message.
# It is aliased to `cs-update` in .zshrc
2023-02-21 07:39:26 +00:00
notes_path="/Users/thomasbishop/prepos/computer_science"
2023-01-23 15:53:41 +00:00
# SPACE_TO_UNDERSCORE="/home/thomas/repos/computer_science/_scripts/space_to_underscore_filename.sh"
# CLEAN_IMAGE_DIRECTORY="/home/thomas/repos/computer_science/_scripts/clean_image_directory.sh"
2023-02-21 07:39:26 +00:00
cd "$notes_path"
2023-01-23 15:53:41 +00:00
# Loop through directories and convert spaces in filenames to underscores
# source ${SPACE_TO_UNDERSCORE}
# source ${CLEAN_IMAGE_DIRECTORY}
git pull >/dev/null 2>&1
2023-02-21 07:39:26 +00:00
changes_exist="$(git status --porcelain | wc -l)"
2023-01-23 15:53:41 +00:00
# If no changes, exit. Else commit and push with timestamp
2023-02-21 07:39:26 +00:00
if [ "$changes_exist" -eq 0 ]; then
2023-01-23 15:53:41 +00:00
echo "No changes"
exit 0
fi
git pull >/dev/null 2>&1
git add .
git commit -q -m "Autosave: $(date +"%Y-%m-%d %H:%M:%S")"
git push