本文介绍了git远程库的操作,需要熟练掌握git remote相关的命令。
此外,有两点需要注意:
1、不推荐使用git pull命令,应该先使用git fetch命令同步远程库的内容到本地后,再使用git merge合入到本地仓库的分支中,这样更安全。
2、删除远程库分支的命令是git push origin :branch-name,这个命令不太容易记忆。...
分类:
其他好文 时间:
2014-10-24 20:46:19
阅读次数:
214
1.A Synthetic Traffic Model for Quake3 (Tanja Lang, Philip Branch, Grenville Armitage)2007-6-9该文讲述了用ns2对第一视角射击游戏quake3的网络流量建模。它用的数据来源于一个很强悍的软件PKthisto...
分类:
其他好文 时间:
2014-10-22 14:30:41
阅读次数:
219
hive本身支持的子查询非常有限,Hive不支持where子句中的子查询,只允许子查询在from中出现错误写法:insert into table branch_atmzc_sumSelect XT_OP_TRL, SA_TX_DT,"取款-存款",b.cr_tx_amt- a.cr_tx_amt....
分类:
其他好文 时间:
2014-10-22 10:55:14
阅读次数:
1598
报错信息:You asked me to pull without telling me which branch youwant to merge with, and 'branch.v1.0.0.merge' inyour configuration file does not tell me,...
分类:
其他好文 时间:
2014-10-20 16:40:29
阅读次数:
211
Overview涉及Git一些日常操作 :)基础知识《Pro Git》至少了解branch,commit的概念,及基本的原理Git常用魔法存档:master代码回滚方法我是QA,我用GitGit 工作区、暂存区和版本库Overview暂存区(stage, index)是 Git 最重要的概念之一工作...
分类:
其他好文 时间:
2014-10-18 04:15:08
阅读次数:
272
上一篇文章讲的是分形之树(Tree),这一篇中将其简化一下,来展示二叉分形树的生长过程。核心代码:static void FractalBinaryTree(const Vector3& vStart, const Vector3& vEnd, Yreal angle, Yreal branch_c...
分类:
其他好文 时间:
2014-10-16 09:43:02
阅读次数:
397
语法列表:/* from http://www.w3.org/TR/xmlschema-2/#regexs */ // [1] regExp ::= branch ( '|' branch )* re_reg_exp = re_branch [push_back( at_c(_val), ...
分类:
其他好文 时间:
2014-10-15 14:20:00
阅读次数:
243
先说说什么是branch。按照Subversion的说法,一个branch是某个development line(通常是主线也即trunk)的一个拷贝,见下图:branch存在的意义在于,在不干扰trunk的情况下,和trunk并行开发,待开发结束后合并回trunk中,在branch和trunk各自...
分类:
其他好文 时间:
2014-10-15 12:07:35
阅读次数:
232
摘要:
本文主要通过简单的量化计算的例子,来说明为什么硬件体系结构研究中branch prediction和cache是两大
研究的主题。...
分类:
系统相关 时间:
2014-10-14 13:15:28
阅读次数:
210
for branch_name in `git branch | grep b_`do git rm -f README.md git commit -m'rm README.md' git merge $branch_name git rm -f README.md ...
分类:
其他好文 时间:
2014-10-14 00:37:37
阅读次数:
239