I have a micro-service app built in Laravel 9. It is built as two micro-services: frontend and backend.
Each micro-service has sub-folders and file because each is a Laravel installation.

I want to commit the whole as one repository to GitHub using my Git GUI but my windows shows no files and i keep getting :
No changes to commit You must stage at least 1 file before you can commit.

Prior to committing, you must add files.
Some commands for git flow:
git initcreates new repositorygit add <filename>stages a filegit add *orgit add --allstages all files on the repositorygit commit -m "message"commits staged filesgit push <remote> <branch>Pushes branch to a remote repository e.g. on githubSome basic documentation: https://rogerdudler.github.io/git-guide/