[在线文档](https://git-scm.com/book/zh/v2/Git-%E5%88%86%E6%94%AF-%E5%88%86%E6%94%AF%E7%AE%A1%E7%90%86)
## 指令
```shell
# 新建分支
$ git branch iss53
# 切换分支
$ git checkout iss53
# 新建一个分支并同时切换到那个分支上
$ git checkout -b iss53
# 合并分支
$ git merge hotfix
# 删除分支
$ git branch -d hotfix
# 查看状态
$ git status

```
## 配置

```shell
# 文件名大小写敏感
git config --global core.ignorecase false
# 账号密码
git config --global user.name "your-username"
git config --global user.email "your-email-address"
```
```