- Takes a directory as an argument.
- Checks if it's a Git repository.
- Checks for uncommitted changes.
- Generates a commit message with π±, the current timestamp, and "morning/afternoon/night update."
- Commits and pushes the changes.
- It checks the current hour to determine "morning," "afternoon," or "night."
- Uses date -u for an ISO 8601 UTC timestamp.
- Exits cleanly if no changes are found.
- Adds all changes, commits with the generated message, and pushes to the current branch.
./repo-update.zsh /path/to/repo
To run the script every hour using cron, you need to:
Ensure the script is executable:
chmod +x /path/to/script.zsh
Edit the crontab by running:
crontab -e
Add the following line to schedule the script every hour:
0 * * * * /path/to/script.zsh /path/to/git/repo >> /path/to/logfile.log 2>&1
0 * * * *
β Runs at minute 0 of every hour./path/to/script.zsh /path/to/git/repo
β Executes the script with the repo path as an argument.>> /path/to/logfile.log 2>&1
β Logs output and errors to a file for debugging.
If your script relies on Zsh-specific features, explicitly specify the shell in crontab:
SHELL=/bin/zsh
0 * * * * /path/to/script.zsh /path/to/git/repo >> /path/to/logfile.log 2>&1
This will ensure that the script runs correctly under Zsh every hour. π
This will prevent the error below:
fatal: Unable to read current working directory: Operation not permitted
On macOS, cron does not have permission to access all directories by default. To fix this:
- Open System Settings β Privacy & Security β Full Disk Access.
- Click + and add /usr/sbin/cron (or cron if it's not listed).
- Restart cron:
sudo launchctl stop com.vix.cron
sudo launchctl start com.vix.cron
Now, cron will have proper permissions.