git 分支管理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 分支管理相关的知识,希望对你有一定的参考价值。
your branch is ahead of ‘origin/xx” by 1 commit
说明本地commit还没有提交到中心服务当中。
查看远程分支的情况
git branch –a
将本地commit提交到远程服务器当中
git push
注意:
其是将当前分支的log提交到远程中心服务器当中。
合并分支 将test分支合并到master分支当中
1. 先切换到master分支当中
git checkout master
2. git merge test
3. 查看没有合并成功,通过查看master上面的log有没有在test分支的信息。
修改
device/rockchip/rk30sdk/hwapu/system/media/bootanimation.zip
以上是关于git 分支管理的主要内容,如果未能解决你的问题,请参考以下文章