vault backup: 2026-01-08 09:34:22

This commit is contained in:
windyboy
2026-01-08 09:34:22 +08:00
parent e967fa874a
commit 0e4d21f721
28 changed files with 3164 additions and 271 deletions
+23
View File
@@ -0,0 +1,23 @@
# Git Workflow
## Session Workflow
```bash
# Always start sessions with
git pull
# After significant work
git add . && git commit -m "vault backup: $(date)" && git push
```
## Commit Format
- Standard: `vault backup: YYYY-MM-DD HH:MM:SS`
- Feature: `feat: description`
- Fix: `fix: description`
- Docs: `docs: description`
## Best Practices
- Pull before starting work
- Commit frequently (after significant changes)
- Push at end of session
- Use descriptive messages for non-backup commits
- Never force push without approval