I work on 2 main branches namely 'develop' and 'master'.

Everything was working perfectly fine until today.

When I saw the network graph on github, there was a mysterious yellow colored branch coming out of master and having no name.

I have attached the images both labelled and unlabeled version of network graph.

What could have possibly gone wrong?

enter image description here

enter image description here

有帮助吗?

解决方案

At some point did you merge a branch with git merge mybranch --no-ff and then delete mybranch? The --no-ff (no fast forward) forces git to make a merge commit so there's a record of the branch existing at some point, however the name is now gone.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top