Git Workflow Skill
Branches
main/master- productiondevelop- integrationfeature/description- new featuresfix/issue-description- bug fixes
Workflow
git checkout -b feature/my-feature
# Make changes
git add -A
git commit -m "feat: add feature"
git push origin feature/my-feature
# Create PR
Commits
feat:new featurefix:bug fixdocs:documentationrefactor:non-functional changetest:adding testschore:maintenance
Best Practices
- Small, focused commits
- Include issue references: "Fixes #123"
Source: 11vated/Nexus — distributed by TomeVault.