Git Workflow

Git workflow automation - staging, committing, branching with best practices Use when this capability is needed.

tomevault-io Updated

File contents

Git Workflow Skill

Branches

  • main / master - production
  • develop - integration
  • feature/description - new features
  • fix/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 feature
  • fix: bug fix
  • docs: documentation
  • refactor: non-functional change
  • test: adding tests
  • chore: maintenance

Best Practices

  • Small, focused commits
  • Include issue references: "Fixes #123"

Source: 11vated/Nexus — distributed by TomeVault.

tomevault-io/skills-registry/tree/main/11vated--nexus--git-workflow commit d0c12f4e3f

Frequently asked questions

npx skillmds@latest add tomevault-io/git-workflow-4