Martney Acha
Martney Acha

Reputation: 3012

Git Bitbucket Branching Tree

I have this commit a new Git branch in bitbucket, but in the source tree its not creating a new line, what am I missing ?

enter image description here

Upvotes: 2

Views: 668

Answers (1)

VonC
VonC

Reputation: 1328712

Your new branch is built upon an existing branch, which means the graph of commits accessible from said new branch is a straight line.

If your previous branch adds commits of its own, then you would see different branches.

Upvotes: 3

Related Questions