git – Disable “LF will be replaced by CLRF” warning in Git on Windows

  warning: LF will be replaced by CRLF in www/index.html.The file will have its original line endings in your working directory.warning: LF will be replaced by CRLF in www/index.phpThe file will have its original line endings in your working directory….   git config –global core.safecrlf false  

git – My aliases

  alias gs=’git status‘ alias gl=’git log –name-status‘ alias gc=’git checkout‘ alias gb=’git branch‘ alias gbn=’git for-each-ref –sort=‘-*refname‘ –format=“%(refname:short)“ refs/heads/‘ alias gbl=“git for-each-ref –sort=‘-committerdate‘ –format=’%(committerdate)%09%(color:green)%(refname:short)%(color:reset)‘ refs/heads“