git-workflow

Manage Git branches, commits, and pull requests following best practices

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "git-workflow" with this command: npx skills add tatat/agents-playground/tatat-agents-playground-git-workflow

Git Workflow

Manage Git operations and follow branching best practices.

Capabilities

  • Create and manage feature branches
  • Write meaningful commit messages
  • Handle merge conflicts
  • Create and review pull requests

Branch Naming

feature/  - New features (feature/add-user-auth)
bugfix/   - Bug fixes (bugfix/fix-login-error)
hotfix/   - Urgent production fixes (hotfix/security-patch)
release/  - Release preparation (release/v1.2.0)

Commit Message Format

<type>(<scope>): <subject>

<body>

<footer>

Types

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation
  • refactor: Code refactoring
  • test: Adding tests
  • chore: Maintenance

Example

feat(auth): add OAuth2 login support

- Implement Google OAuth2 provider
- Add token refresh mechanism
- Store tokens securely in session

Closes #123

Common Workflows

Feature Branch

git checkout -b feature/new-feature
# ... make changes ...
git add .
git commit -m "feat: add new feature"
git push -u origin feature/new-feature
# Create PR

Sync with Main

git checkout main
git pull origin main
git checkout feature/my-feature
git rebase main

PR Checklist

  • Tests pass
  • Code reviewed
  • Documentation updated
  • No merge conflicts

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

fitness-coach

No summary provided by upstream source.

Repository SourceNeeds Review
128-tatat
Automation

document-summary

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

creative-writer

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

language-tutor

No summary provided by upstream source.

Repository SourceNeeds Review