git config命令
git help命令
git init命令
git add命令
git clone命令
git status命令
git diff命令
git commit命令
git reset命令
git rm命令
git mv命令
git branch命令
git checkout命令
git merge命令
git mergetool命令
git log命令
git stash命令
git tag命令
git fetch命令
git pull命令
git push命令
git remote命令
git submodule命令
git show命令
git shortlog命令
git describe命令
git rebase命令
Git不同平臺換行符問題
GNU/Linux和Mac OS使用換行(LF
)或新行作爲行結束字符,而Windows使用換行和回車(LFCR
)組合來表示行結束字符。
爲了避免這些行結尾的差異的不必要提交,我們必須配置Git客戶端寫入與Git倉庫使用相同的行結束符。
對於Windows系統,可以將Git客戶端配置爲將行結束符轉換爲CRLF
格式,同時退出,並在提交操作時將其轉換回LF
格式。以下可根據您的需要來設置。
$ git config --global core.autocrlf true
對於GNU/Linux或Mac OS,我們可以配置Git客戶端,以便在執行結帳操作時將線結束從CRLF轉換爲LF。
yiibai@ubuntu:~$ git config --global core.autocrlf input