常规提交方式
git pull
git add .
git commit -m "描述"
git push
项目克隆(找一个目录)
git clone 项目路径
- 查看远程分支
git branch -a
- 查看本地分支
git branch
* master //前缀星号表示当前所在分支
test
- 新建分支
git branch test //新建分支
git push origin test //将分支提交到远程仓库
- 切换分支
git checkout test
- 删除分支
git branch -d test //删除本地分支
git push origin :test //提交到远程仓库