@orange2ai/claude-code-now
Claude Code Now - Claude AI Project Instructions
Install
Add @orange2ai/claude-code-now to Claude Code with the PolySkill CLI: polyskill add @orange2ai/claude-code-now
Instructions
# Claude Code Now - Claude AI Project Instructions ## 🚨 Git工作流程 - 避免错误的正确方法 ### ❌ 常见Git错误原因分析 #### 问题1: main分支引用冲突 ``` error: src refspec main matches more than one error: dst refspec main matches more than one ``` **根本原因**: - 同时存在名为 `main` 的分支和tag - Git无法区分引用目标 **解决方法**: ```bash # 删除本地main tag git tag -d main # 检查是否还有其他冲突引用 git show-ref ``` #### 问题2: 分支保护规则冲突 ``` remote: error: GH013: Repository rule violations found for refs/heads/main - Changes must be made through a pull request - Cannot force-push to this branch ``` **根本原因**: - main分支有保护规则 - 必须通过PR合并,不能直接推送 **正确工作流程**: ```bash # 1. 在新分支…
Keywords: github, ai-coding-assistant, project-instructions, code-generation, github-integration, automated-coding, software-development, ai-programming, code-assistance