- 分支
- 查看分支:
git branch - 创建分支:
git branch <name> - 切换分支:
git checkout <name>或者git switch <name> - 创建+切换分支:
git checkout -b <name>或者git switch -c <name> - 合并某分支到当前分支:
git merge <name> - 删除分支:
git branch -d <name>
- 账户(在 push 的时候需要设置账号与密码,该密码则是 github 的账号与密码)
设置记住密码(默认15分钟): git config --global credential.helper cache如果想自己设置时间,可以这样做(1小时后失效): git config credential.helper 'cache --timeout=3600'长期存储密码: git config --global credential.helper store- 配置用户和邮箱
git config user.name '张三'git config user.email 'zhangsan@163.com'