The unnecessary changes in your GitHub Desktop related to bin/ and obj/ folders can be resolved by using a .gitignore file.
In the root directory of your MauiApp repository, create a new file named .gitignore (if it doesn’t already exist).
Add the following lines to the file to ignore the bin/ and obj/ directories: bin/ obj/
git add .gitignore
Then you can do git commit , followed by git push.