一键导入
version-control
Use when: setting up version control or following Git best practices in projects. Provides a quick checklist for Git setup and workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when: setting up version control or following Git best practices in projects. Provides a quick checklist for Git setup and workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when: ensuring a CodeIgniter application resolves URLs correctly on local/test and production hosts.
Use when: bootstrapping a new front-end project with Bootstrap. Provides a quick checklist to set up HTML, CSS, JS structure and integrate Bootstrap framework.
Use when: setting up a new CodeIgniter project or following development best practices. Provides a quick checklist for installation, configuration, and MVC structure.
Use when: preparing a CodeIgniter project for open source release. Provides a quick checklist for licensing, documentation, and code commenting.
Use when: implementing testing in CodeIgniter projects. Provides a quick checklist for best practices and acceptance testing at each stage.
| name | version-control |
| description | Use when: setting up version control or following Git best practices in projects. Provides a quick checklist for Git setup and workflows. |
This skill guides you through setting up Git and following best practices for version control in the SiteCounter project.
Initialize Repository
git init in the project rootgit remote add origin <repository-url>Configure .gitignore
Branching Strategy
main as the default branchgit checkout -b feature/user-authgit checkout -b release/v1.0Committing Changes
git add <files> or git add . for allgit commit -m "feat: implement user login"Pushing and Pulling
git push origin feature/branchgit pull origin maingit fetch originHandling Conflicts
git add <resolved-file>git commitBest Practices
git tag -a v1.0.0 -m "Release v1.0.0"This checklist promotes effective Git usage for collaborative development.