Git检出指定分支代码到指定目录

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

你可能感兴趣的:(Tools,git,github)