标签:
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
标签:
原文地址:http://www.cnblogs.com/pengxinglove/p/5192862.html