ChrisMinich / mario

0 stars 0 forks source link

IDEA files in version control #2

Open mpmenne opened 10 years ago

mpmenne commented 10 years ago

Hey this is an easy one. Project files (like .idea, .iml, etc) sometimes contain absolute paths and should not be included in version control because they might not work on a another person's machine. Remove the .idea folder from your project and add a .gitignore file so that Git leaves project files out of version control.

Here's a link on deleting the .idea file out of Github https://github.com/blog/1545-deleting-files-on-github

Here's a link for the .gitignore file: https://help.github.com/articles/ignoring-files

ChrisMinich commented 10 years ago

Thanks for the links. Done!