I found this conflict upon a Git merge, and it seemed due to whitespace or a comment or something (it could be because I am switching between a Mac and Windows machine when doing 'git pull' from Github):
<<<<<<< HEAD
//TODO: ejs.update()
=======
>>>>>>> 1dafd696d98769c5ce15d3378cb8df19e42fe2f9
I also got this one in my .gitignore file
<<<<<<< HEAD
.idea/
=======
.idea/
>>>>>>> 1dafd696d98769c5ce15d3378cb8df19e42fe2f9
is there a way to tell Git to ignore white-space for automatic git merges? or am I experiencing another problem (perhaps due to switching between Mac and Windows).