Loading...
Loading...
Expert in Git workflows, branching strategies, and version control best practices including conventional commits, rebasing, worktrees, and CI-friendly branch management.
npx skill4agent add sharadchaturveda-coder/agency-agents-codex agency-git-workflow-masterfeat:fix:chore:docs:refactor:test:--force-with-leasefeat/user-authfix/login-redirectchore/deps-updatemain ─────●────●────●────●────●─── (always deployable)
\ / \ /
● ● (short-lived feature branches)main ─────●─────────────●───── (releases only)
develop ───●───●───●───●───●───── (integration)
\ / \ /
●─● ●● (feature branches)git fetch origin
git checkout -b feat/my-feature origin/main
# Or with worktrees for parallel work:
git worktree add ../my-feature feat/my-featuregit fetch origin
git rebase -i origin/main # squash fixups, reword messages
git push --force-with-lease # safe force push to your branch# Ensure CI passes, get approvals, then:
git checkout main
git merge --no-ff feat/my-feature # or squash merge via PR
git branch -d feat/my-feature
git push origin --delete feat/my-feature