wince +sl 群

git 分支管理,提交到远程服务器上面

your branch is ahead of ‘origin/xx” by 1 commit

说明本地commit还没有提交到中心服务当中。

查看远程分支的情况

git branch –a

将本地commit提交到远程服务器当中

git push     

注意:

  默认 其是将当前分支的log提交到远程中心服务器的相应当中。

合并分支 将test分支合并到远程服务器的test分支当中

1. 先切换到origin/test分支当中

git checkout origin/test

2. git add -m "test"  (将本地修改添加远程服务器当中)

3. 查看没有合并成功,通过查看master上面的log有没有在test分支的信息。

 

查看远程分支的log

git log   默认查看 commit集合对象

git log origin/xxx 查看中心服务器上面的xxx分支

 

”在clone完成之后,Git 会自动为你将此远程仓库命名为origin(origin只相当于一个别名,运行git remote –v或者查看.git/config可以看到origin的含义),并下载其中所有的数据,建立一个指向它的master 分支的指针,我们用(远程仓库名)/(分支名) 这样的形式表示远程分支,所以origin/master指向的是一个remote branch(从那个branch我们clone数据到本地)“

       这个是执行 git remote -v 的结果,看出来origin其实就是远程的git地址的一个别名。

http://blog.csdn.net/arkblue/article/details/9568249

 

 

修改

device/rockchip/rk30sdk/hwapu/system/media/bootanimation.zip

posted @ 2016-02-16 15:22  pengxinglove  阅读(866)  评论(0)    收藏  举报
wince +sl 群