Jira + Git workflow bridge

Jitly vs git-flow: branching strategy vs branching automation

git-flow tells you what branches should exist. Jitly actually creates them and ties them to your ticket.

git-flow is a branching model — develop, feature/, release/, hotfix/, main. It's a set of rules about which branch to cut from and where to merge back. A lot of teams still follow some version of it even if they don't use the actual git-flow CLI extension anymore.

Jitly isn't a branching model at all. It doesn't care if you use git-flow, trunk-based dev, or something you made up. It just automates whatever convention you already picked and connects it to Jira.

How they actually work together

You can literally set your Jitly branch template to match git-flow: feature/{ticket_lower}-{desc} pulls from develop, and Jitly handles the pull + create + checkout for you every time, so nobody has to remember the rule.

git-flowJitly
Defines branch typesYesNo, uses your template
Creates branches for youPartially (CLI extension)Yes, tied to ticket
Updates JiraNoYes
Verdict: not really competing tools. git-flow decides the shape, Jitly does the typing for you.

← Back to blog