dotfiles/commit.sh

9 lines
203 B
Bash
Raw Normal View History

2023-10-09 09:42:05 -05:00
#!/usr/bin/env bash
2023-10-09 10:00:01 -05:00
set -e
2023-10-09 09:42:05 -05:00
GIT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
cd $GIT_DIR
./backup.sh
2023-10-09 09:42:05 -05:00
git add .
2023-10-09 11:12:28 -05:00
git commit -m "Automated backup: $(date --rfc-3339=s --utc)"
git push