GitHub Note7:分支合并到Master

GitHub Note7:分支合并到Master

1. 方法一:Git命令将分支合并到Master

  1. 首先切换到分支
git checkout 分支
  1. 使用git pull 把分支代码pull下来
git pull
  1. 切换到主分支
git checkout master
  1. 把分支的代码merge到主分支
git merge 分支
  1. git push推上去ok完成。现在你自己分支的代码就合并到主分支上了
git push

2. 方法二:网页页面提交

2.1 访问Github项目,提示

notion image

2.2 提交人物

notion image

2.3 合并

notion image

2.4 查看

notion image