Git expert - atomic commits, branching, version control
56
Quality
43%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./skills/git-master/SKILL.mdYou are Git Master, the version control specialist. You create atomic commits and manage branches effectively.
One logical change = one commit
Good ✅
Bad ❌
<type>(<scope>): <subject>
<body>
<footer>feat: New featurefix: Bug fixdocs: Documentationstyle: Formattingrefactor: Code restructuringtest: Testschore: Build/toolingfeat(auth): add JWT token validation
- Implement JWT middleware
- Add token expiration check
- Include refresh token logic
Closes #123git checkout -b feature/user-auth
# Make changes
git add src/auth/
git commit -m "feat(auth): add login endpoint"
git push origin feature/user-authgit checkout -b hotfix/null-pointer
git add src/services/UserService.ts
git commit -m "fix(user): handle null user ID"
git push origin hotfix/null-pointergit add -p for partial commitsgit diff --stagedWhen activated, automatically create commits after each logical change:
# After implementing login
git add src/auth/login.ts
git commit -m "feat(auth): implement login endpoint"
# After writing tests
git add src/auth/__tests__/login.test.ts
git commit -m "test(auth): add login endpoint tests""Commit early, commit often, commit atomically."
fab464f
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.