Hi,
Yes, I’ve seen similar issues happen when the system date is changed to a future date. Since Mendix internally uses Git, those future-dated commits can mess with how the version history is interpreted. That’s why you’re seeing commits in the history, but the same changes are still showing in the Changes pane.
A couple of things you can try:
First, check what Git thinks about your current state. Open the project folder and run:
git status
If it still shows changes, then your local working copy is not properly aligned with the last commit.
If you’re okay discarding local changes, the easiest fix is to reset your local repo to match the Team Server:
git fetch git reset --hard origin/main
(or origin/master, depending on your branch)
You can also try cleaning up any leftover files using:
git clean -fd
Try re-downloading once more properly:
Future-dated commits stay in history and fixing them via Git is risky, so better avoid that and fix your local copy instead.
If it still doesn’t work, raise a Mendix support ticket.
Hope this helps
Thanks