Git创建子分支,合并分支并提交

(编辑:jimmy 日期: 2025/4/3 浏览:2)

Git合并分支后,需要将子分支提交到git仓库,这个时候就需要单独提交子分支,其步骤如下:

1.先创建子分支,并包含最新当前分支下的修改数据

git checkout -b sonBranch

2.将新分支内容全部提交

git add .
git commit -m "完成开发"

3.在码云创建一个子分支

git push -u origin sonBranch

4.切换到主分支

git checkout master

5.合并分支,更新主分支内容

git merge sonBranch

6.重新提交主分支内容

git push

PS:下面看下gitee 如何创建仓库 及发布

http://pengchenggang.gitee.io/layuisyshelp

-----------

在本地项目文件中使用bash

$ git config --global user.name "你的名字"

$ git config --global user.email "你的邮箱"

1. 初始化 

$ git init
$ git remote add origin https://gitee.com/xxx/xxx.git (你的远程项目地址)

2.克隆一下

$ git clone https://****.git (你的远程项目地址)

3. 提交

$ git pull origin master

$ git add .

$ git commit -m "你的第一次提交"

$ git push origin master
---------------------

gitee 里面要发布一个pages的服务,然后就能访问了

总结

一句话新闻

高通与谷歌联手!首款骁龙PC优化Chrome浏览器发布
高通和谷歌日前宣布,推出首次面向搭载骁龙的Windows PC的优化版Chrome浏览器。
在对骁龙X Elite参考设计的初步测试中,全新的Chrome浏览器在Speedometer 2.1基准测试中实现了显著的性能提升。
预计在2024年年中之前,搭载骁龙X Elite计算平台的PC将面世。该浏览器的提前问世,有助于骁龙PC问世就获得满血表现。
谷歌高级副总裁Hiroshi Lockheimer表示,此次与高通的合作将有助于确保Chrome用户在当前ARM兼容的PC上获得最佳的浏览体验。