Git检出指定分支代码
git clone --progress --branch master -v "https://github.com/KervinLi/tool.git" "D:\Repository\GitHub\tool"
Git相关配置信息
git config --global user.name 'userName'
git config --global user.email 'userEmail'
git config --global gui.encoding utf-8 (gitk界面乱码)
Git基于当前分支创建新分支
git checkout -b [branch name]
Git删除分支
git branch -D branch_name
Git 切换分支
git checkout branch_name