Home > Back-end >  What does a gap/broken line mean in IntelliJ Git graph?
What does a gap/broken line mean in IntelliJ Git graph?

Time:10-13

Have a look at this screenshot. Why is the graph broken up between the two nodes?

Screenshot shows git graph in IntelliJ 2021.2 Ultimate

CodePudding user response:

A gap between commits means that there is a part of a history that does not match a filter criterion. Once you remove your filters you should see commits that are "hidden" by this gap.

  • Related