Git客户端使用
1.下载安装包
git: https://git-for-windows.github.io/index.html
tortoisegit: https://download.tortoisegit.org/
2.基本设定
3.git命令 之 切换分支
Git一般有很多分枝,clone到本地的一般是master分支,那如何切换到其他分支呢,命令如下:
3.1. 查看远端分支 git branch -a (当前分支为master)
3.2 查看本地分支 git branch
3.3 切换分支