Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 296 Bytes

ignore_them.md

File metadata and controls

12 lines (12 loc) · 296 Bytes

ignore them

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.