After setting up the repository and when I tried to add files to GIT index (inorder to have my files considered for next commit) ........ I got
Warning: LF will be replaced by CRLF in
After googling I found this a default GIT setting and can be overridden by issuing
git config core.autocrlf false
in Bash mode
A note on LF & CRLF
Most Unix operating systems represent the end of each line with a line feed (LF) character. However, the Windows operating system represent the end of line with both a carriage return (CR) and a LF.