引用文字
微軟電腦安裝:html
安裝注意:node
Use Git from the Windows Command Prompt
Check out Windows-style,commit Unix-style line endings
蘋果本的安裝:git
homebrew mac的包管理器github
注意:mongodb
優勢:windows
注意:xcode
git --version
② 配置用戶名和密碼(告訴git是誰提交的代碼),不配置不能提交代碼工具
git config --global user.name "你的github用戶名" git config --global user.email "你的github郵箱" git config --list 查看配置狀況清單
git config --global --add configName configValue
git config --global --unset configName (只針對存在惟一值的狀況)
git config --global configName configValue (只針對惟一量)
git config configName (查詢實際生效的配置值) git config --global configName (查詢指定級別下,實際生效的配置值) git config --get configName (查詢實際生效的配置值) //以上三種不能保證查詢到全部的值,可能有未生效的 git config --list --global (查詢指定級別下,全部的配置(包括不生效))