配置
//文件名需要区分大小写。windows不区分,所以需要本地设置
git config core.ignorecase false
分支
//部署test分支
git checkout test && git pull
//本地分支列表
git branch
//删除test分支
git branch -d test
//强制删除test分支
git branch -D test
//新建test2分支,并切换到test2分支
git checkout -b test2
//相当于
git branch test2 && git checkout test2
打标签
htt...