git-doc-isolation
Installation
SKILL.md
Git 文档隔离管理
快速开始
5 分钟上手
# 1. 验证 main 分支干净
git log main -- docs/ # 应返回空
# 2. 创建孤立 docs 分支
git checkout --orphan docs
git rm -rf .
mkdir docs && echo "# Dev Guide" > docs/guide.md
git add docs/ && git commit -m "chore(docs): init"
# 3. 回到 main,开始使用
git checkout main