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

  • Post author:
  • Post category:其他




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



版权声明:本文为weixin_39699061原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。