We need to create a .gitignore
to ignore certain files.
Create one using touch .gitignore
Inside that file add -
*.exe
*.o
*.jar
libraries/
This ignores all the required files/folders
Next use git add .gitignore
and git commit -m "lmao"
to commit it.