一、warning: LF will be replaced by CRLF问题解决方法
1. $ rm -rf .git
2. $ git config --gobal core.autocrlf false (系统就不会进行LE转换了)
3. $ git init
4. $ git add -A
二、 克隆远程库的某一指定分支
git clone -b <branch name> [remote repository address]