Saves ~/.claude/settings.json (user-level prefs + Bash/Read permissions allowlist) so the same Claude Code config can be replicated on other hosts via install.sh. What gets deployed: - .claude/settings.json — theme, verbose, defaultMode, skipAutoPermissionPrompt and the cumulative "approve once" allowlist for common ops (systemctl, iptables, journalctl, git, curl, etc.). Server-specific allow entries (e.g. /home/mastodon/* paths) are dead weight elsewhere but harmless. - .claude/.gitignore — explicit deny-list so a future `git add .claude` doesn't accidentally pull in credentials, session logs, project memories, file-history, telemetry, caches, or settings.local.json. What is NOT tracked (by design): - .credentials.json (auth) - history.jsonl, sessions/, projects/ (chat data, project memories) - settings.local.json (per-machine overrides — by Claude Code convention) - file-history/, plans/, paste-cache/, shell-snapshots/, session-env/, telemetry/, downloads/, cache/, backups/, mcp-needs-auth-cache.json - plugins/ (marketplace install paths are absolute and host-specific) deploy_dir's merge semantics mean: on a host that already has ~/.claude/.credentials.json or ~/.claude/projects/, those stay untouched because the repo doesn't track them. Only the files we explicitly include get installed. Existing settings.json on the target host is moved aside to ~/.drunkendotfiles.bak.<timestamp>/ before being replaced.
34 lines
819 B
Plaintext
34 lines
819 B
Plaintext
# Never track Claude Code per-machine state, secrets, or chat data.
|
|
#
|
|
# settings.json IS tracked (portable user prefs + permissions allowlist).
|
|
# Everything else under ~/.claude/ stays per-host: credentials, session
|
|
# logs, project memories, file-edit history, telemetry, caches.
|
|
|
|
# Auth — must NEVER be tracked
|
|
.credentials.json
|
|
|
|
# Per-machine settings overrides (by Claude Code convention)
|
|
settings.local.json
|
|
|
|
# Chat and session data
|
|
history.jsonl
|
|
sessions/
|
|
projects/
|
|
file-history/
|
|
plans/
|
|
|
|
# Caches and ephemeral state
|
|
cache/
|
|
downloads/
|
|
paste-cache/
|
|
shell-snapshots/
|
|
session-env/
|
|
backups/
|
|
telemetry/
|
|
mcp-needs-auth-cache.json
|
|
|
|
# Plugin marketplace state — known_marketplaces.json IS portable, but the
|
|
# resolved-plugin caches and the local blocklist are per-machine.
|
|
plugins/blocklist.json
|
|
plugins/marketplaces/
|