Experimental git not showing commits

Wappler 7.9.4
NodeJS:

This is showing on experimental git:

And this when turned off:

On refresh:

[2026-05-25 09:44:44.293] Building graph with 36 commits, first parent only: false
[2026-05-25 09:44:44.293] Graph built with 36 vertices and 1 branches

Let me know if I can share a video on DM
Thanks

Oh wait, I can see it on Advanced panel:

But this is intended?

In another inspection this is happening when enabling experimental git manager:

[17028:0525/095907.029:INFO:CONSOLE(1)] "Uncaught (in promise) TypeError: Cannot read properties of null (reading 'hide')", source: file:///C:/Users/Fran/AppData/Local/Wappler/resources/app/Shared/DMXzone/dmxAppCreator/UI/gitManager.js (1) 

The basic view only shows commits of the current local branch and not any other branches while the advanced tab shows commits from all branches.

Sorry @patrick not following, it's just a main branch

The commits that you don't see are the commits on the remote branch. You see in the advanced branch that your local branch is at 20250522 0, while the remote branch is at 20260525 4. The basic view only shows the local branch since that is where you are working in. The other commits above it are not in your local repository, you need to do a pull to get those changes into your local project and then they also become visible in the basic view.

Maybe I'm not seeing the point here, but should not be better if I see that I need to pull?

What I see here is that there's no diff and actually those commits are hidden..

If the remote is being tracked in git then it will show a counter next to the push and pull buttons with how many commits your branch is behind/ahead of the remote. We currently don't track automatically but it is planned.

You can enable upstream tracking with the git cli:

git branch --set-upstream-to=origin/<remote_branch>

Git Set Upstream to Origin: A Quick How-To Guide

It can be that we will change the view if it is too confusing for users. The basic view is based on the Github desktop app which shows a similar list for the History.

Got it, not a fan of the github desktop app, but I understand

For me it's enough if some badge can be showed :slight_smile:

Thanks Patrick!