Sunday 10 September 2017

Git properties for project having eol(end of line) as LF but check-in and check-out from Windows

$ git config core.autocrlf false
$ git config --global core.eol lf

This will automatically convert the line endings to LF during check-in and check-out of project.

Thursday 23 March 2017

Managing multiple versions of java in workspace

Found very useful and comprehensive read on managing multiple versions of java in workspace

https://andrew-jones.com/blog/managing-multiple-versions-of-java-on-os-x/