- CLAUDE.md: guidance for Claude Code AI - README.md: repository overview and structure - QUICKSTART.md: setup and usage guide - SUMMARY.md: inventory of workflows and snippets - alfred-sync.sh: git sync script for Alfred preferences Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
6 lines
112 B
Bash
Executable File
6 lines
112 B
Bash
Executable File
#!/bin/bash
|
|
cd /Users/timmy/Sync/AlfredPrefs
|
|
git add -A
|
|
git commit -m "sync $(date '+%Y-%m-%d %H:%M')"
|
|
git push
|