I recently started a project with a friend and on my end, when I’m pushing to every branch, different changes keep popping up in the editor folder every time I make change in the project.
On top of that, the last 3 to the actual project keep popping up with the .cfg changes.
I tried to put the .godot folder in gitignore but it doesn’t seem to work.
If a file was already committed to the repository before being added to .gitignore, it will not be automatically removed. To remove them from the repo and stop git from tracking them, use git rm --cached -r .godot/
Thanks! We followed your advice and the problem is resolved although some changes keep lingering in the project(the last three in the screenshot I posted)