vault backup: 2026-02-24 07:55:02

This commit is contained in:
windyboy
2026-02-24 07:55:02 +08:00
parent 37b29f36b3
commit 68182b70fd
37 changed files with 13503 additions and 6802 deletions
+21 -8
View File
@@ -10,6 +10,14 @@ tags: [reference, quick-start, cheatsheet]
---
## 入口说明 + 返回导航
- `README.md` = 项目入口与导航
- `QUICK_REFERENCE.md` = 速查
- `06_Metadata/WORKFLOWS.md` = 详细工作流
**返回导航**: `[[README]]`
## 🌅 Daily Workflow
**Morning (Start Session)**:
@@ -22,7 +30,7 @@ git pull # Sync latest changes
```bash
git add . # Stage all changes
git commit -m "vault backup: $(date)"
git commit -m "vault backup: YYYY-MM-DD HH:MM:SS"
git push # Sync to remote
```
@@ -103,12 +111,10 @@ mv "05_Attachments/file.png" "05_Attachments/Organized/ProjectName_Description.p
**Search Content**:
- Obsidian: `Ctrl+Shift+F` (or `Cmd+Shift+F`)
- Command line: `grep -r "keyword" .`
**Find Files**:
- Obsidian: `Ctrl+O` (Quick Switcher)
- Command line: `find . -name "*pattern*"`
---
@@ -160,6 +166,14 @@ ls 01_Projects/ # Review active projects
---
## 🧭 常用路径导航
- 日常使用: `README.md``QUICK_REFERENCE.md`
- 深入规则: `README.md``06_Metadata/WORKFLOWS.md`
- 周检流程: `QUICK_REFERENCE.md``WEEKLY_REVIEW.md`
---
## ⚠️ Common Issues
**Q: Git conflict after pull?**
@@ -174,7 +188,7 @@ git push
**Q: Can't find a file?**
- Check: `00_Inbox/`, `04_Archive/`
- Search: `grep -r "filename" .`
- Search: Obsidian 全局搜索
- Git history: `git log --all --full-history -- <path>`
**Q: Broken links after moving?**
@@ -202,11 +216,10 @@ git push
## 📚 Deep Dive Docs
- [[CLAUDE]] - Full configuration guide
- [[README]] - Project entry point and navigation
- [[QUICK_REFERENCE]] - One-page quick reference
- [[06_Metadata/WORKFLOWS]] - Detailed workflows and rules
- [[WEEKLY_REVIEW]] - Complete review checklist
- [[PARA_METHOD]] - PARA method explained (coming soon)
- [[GIT_WORKFLOW]] - Git workflow details (coming soon)
- [[TROUBLESHOOTING]] - Extended troubleshooting (coming soon)
---