You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Update FAQ with sync features and troubleshooting
- Updated sync question with built-in rclone sync options
- Clarified cloud data question (optional encrypted sync)
- Added sync recovery to vault loss question
- Updated security answer for local-first with optional sync
- Added new FAQs for sync status check and troubleshooting
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
# Follow prompts to configure remote (e.g., gdrive:.pass-cli)
48
47
49
-
# Option 3: Manual copy (requires keeping in sync)
50
-
cp ~/.pass-cli/vault.enc ~/Dropbox/vault.enc
48
+
# Option 2: Connect to existing synced vault on new device
49
+
pass-cli init
50
+
# Select "Connect to existing synced vault" when prompted
51
51
52
-
# Warning: Conflicts if editing on multiple machines simultaneously
52
+
# Option 3: Set up sync during new vault creation
53
+
pass-cli init
54
+
# Select "Create new vault", then enable sync when prompted
53
55
```
54
56
57
+
Sync automatically pulls on first use and pushes after write operations. See [Sync Guide](../02-guides/sync-guide.md) for full details.
58
+
59
+
**Note**: Requires [rclone](https://rclone.org) installed and configured with at least one remote.
60
+
55
61
---
56
62
57
63
**Q: How do I change my master password?**
@@ -82,20 +88,23 @@ You'll be prompted to enter 6 words from your 24-word recovery phrase to verify
82
88
83
89
**Q: Is my data sent to the cloud?**
84
90
85
-
A: No. Pass-CLI:
86
-
-[OK] Works completely offline
87
-
-[OK] Never makes network calls
88
-
-[OK] Stores everything locally
89
-
-[OK] No telemetry or tracking
91
+
A: By default, no. Pass-CLI:
92
+
- ✅ Works completely offline by default
93
+
- ✅ Stores everything locally
94
+
- ✅ No telemetry or tracking
95
+
- ✅ Optional cloud sync (you control if/when enabled)
96
+
97
+
If you enable cloud sync, your **encrypted** vault is synced to your configured rclone remote. Your master password and decrypted credentials never leave your device.
90
98
91
99
---
92
100
93
101
**Q: What happens if I lose my vault file?**
94
102
95
103
A:
96
-
- If you have backup: Restore from backup
97
-
- If no backup: All credentials lost, must start over
98
-
- Prevention: Regular backups essential
104
+
-**If sync enabled**: Run `pass-cli init` and connect to your synced vault
105
+
-**If you have backup**: Restore with `pass-cli vault backup restore`
106
+
-**If no backup or sync**: All credentials lost, must start over
107
+
-**Prevention**: Enable cloud sync or create regular backups
0 commit comments