From 08aeb65d83851aa415e48d9bdb7b582111edcdad Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 11 Jun 2026 11:07:20 -0500 Subject: [PATCH] Add sync script to repo Co-Authored-By: Claude Opus 4.6 --- sync.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 sync.sh diff --git a/sync.sh b/sync.sh new file mode 100755 index 0000000..4f44a91 --- /dev/null +++ b/sync.sh @@ -0,0 +1,22 @@ +#!/bin/zsh +# Claude Code config sync script +# Pulls remote changes, commits local changes, and pushes + +CLAUDE_DIR="$HOME/.claude" +cd "$CLAUDE_DIR" || exit 1 + +# Pull remote changes first (rebase to keep history clean) +git pull --rebase --quiet 2>/dev/null + +# Stage syncable files +git add -A . + +# Check if there are changes to commit +if ! git diff --cached --quiet; then + git commit -m "Auto-sync $(hostname -s) $(date +%Y-%m-%d\ %H:%M)" --quiet +fi + +# Push if we have commits ahead of remote +if git status | grep -q "ahead"; then + git push --quiet +fi