码迷,mamicode.com
首页 >  
搜索关键字:branch    ( 1809个结果
git 使用总结
保存用户名和密码 [credential] helper = store 获取仓库: git clone http://username:password@192.168.10.5:8114/mdm3-0/web.git 获取分支: git checkout -b branch-name origi...
分类:其他好文   时间:2014-09-26 22:33:58    阅读次数:176
git增删远程分支
创建远程分支: 增加本地分支,push到远程即可删除远程分支: git push origin --delete aa查看远程分支: git branch -r查看所有分支: git branch -a 别人新建的分支有可能看不见: git fetch origin //这条命令可以刷新远程分支
分类:其他好文   时间:2014-09-24 21:53:07    阅读次数:161
git使用--停留在某次提交上,但是代码一直可以更新到最近一次提交的问题
gs(git status)一下,提示信息:You are currently rebasing branch 'master' on '6ff7d77'. (all conflicts fixed: run "git rebase --continue”)当前分支停留在“ 6ff7d77”提交上时...
分类:其他好文   时间:2014-09-24 11:54:06    阅读次数:159
git开发流程、常用命令及工具
根据我最近使用git的一些经历,git是基于分支的版本控制工具,分支有远程分支和本地分支。一、开发流程大致是:从远程服务器的master,clone一份项目文件到本地,然后本地master的基础上branch一个新的本地分支xname,然后checkout切换到这个本地分支上,开始开发;开发过程中可...
分类:其他好文   时间:2014-09-23 00:19:13    阅读次数:219
Ubuntu Android system setup(2)
compile the android source code one branch, android-4.4.3_r1.1...
分类:移动开发   时间:2014-09-16 12:41:10    阅读次数:210
ubuntu 包维护
gnats == bug;tox = tales xilliaubuntu回显当前目录regionenable-servicedisable-servicepreferred;tempestuser-supplied;durationdjango;unified auth system;branch...
分类:其他好文   时间:2014-09-14 19:15:47    阅读次数:246
怎么在Ubuntu平台上面读取电话及短信记录(History API)
bzr branch lp:~liu-xiao-guo/debiantrial/history...
分类:Windows程序   时间:2014-09-04 13:26:39    阅读次数:340
Boot 44b0x by uboot
1. Creat a branch from tag v2013.10-rc42. Build it:make B2Install NFS service for Ubuntu 12.041. nfs server端的安装和配置(1)安装nfs serversudo apt-get install ...
分类:其他好文   时间:2014-09-04 00:07:14    阅读次数:215
数论 - 素数的运用 --- poj 2689 : Prime Distance
Prime DistanceTime Limit:1000MSMemory Limit:65536KTotal Submissions:12512Accepted:3340DescriptionThe branch of mathematics called number theory is abo...
分类:其他好文   时间:2014-09-02 17:28:25    阅读次数:196
Git学习笔记(二)
1、创建并切换到分支$ git checkout -b dev//等同于$ git branch dev$ git checkout dev查看分支$ git branch然后就可以在分支上add和commit切换回master分支$ git checkout master合并后可以删除分支$ gi...
分类:其他好文   时间:2014-09-01 19:25:03    阅读次数:217
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!