代码提交合并流程
0.创建自己的分支并切换到自己的分支
git checkout -b 自己的分支名称
或者(分步骤)
git branch 自己的分支名称 //创建自己的分支
git checkout 自己的分支名称 //切换到自己的分支名称
1.使用git add. 将代码提交到工作区
git add .
2.使用 git commit -m “注释内容”
git commit -m "第一次提交"
3.本分支已经提交完成,切换主分支和并代码(合并之后一定要提交!!!)
git checkout master //切换到主分支
git merge 自己的分支名称
!!! 最后在使用 git push -u origin master
- git 分支常用命令
- 查看分支 git branch
- 创建分支 git branch name
- 切换分支 git checkout name
- 切换加创建分支 git checkout -b name
- 删除分支 git branch -d name
使用命令版本直接进行代码的提交
commit之后的最后几步
git remote add origin git@.......(自己的仓库名称) //添加远程仓库
git push -u origin master (以那个分支提交到自己的仓库)