Code repo】的更多相关文章

http://www.oschina.net/news/15806/20-opensource-host-websites/…
repo常用指令: 1.repo init(下载repo并克隆manifest) repo init -u URL [OPTIONS] Options: -u:制定一个URL,其连接到一个manifest仓库 -m:在manifest仓库中选择一个xml文件 -b:选择一个manifest仓库中的一个特殊的分支 命令repo init 要完成如下操作: 1.完成repo工具的完整下载,执行的repo脚本只是引导程序. 2.克隆清单库manifest.git (地址来自于-u 参数) 3.克隆的清…
linux和bsd: 第一, bsd, berkeley software distribution, 伯克利软件套装, 是最开始的unix是开放的, 然后berkeley对unix进行了修改, 形成了它的bsd, 后来hp和ibm在bsd的基础上, 形成了hp-unix, ibm的aix系统 linux是在minix的基础上, 仿unix做出的. 即 bsd是unix的分支, 而linux是仿unix的, bsd 跟unix的关系更近! 第二, bsd是内核和应用软件一体的 版本, 只有 fr…
.select2-container .select2-choice { height: 34px; line-height: 34px; } .自定义 组件高度 在css 里面设置 .select2-container .select2-choice { height: 34px; line-height: 34px; } .自定义宽度 和 监听 change事件(coffeescript语法) $('#time_scope_scope_id').select2({'width':'200px…
From:http://fatalove.iteye.com/blog/1340334 gerrit清单库是用来配合repo使用的.清单库中列出了gerrit服务器上的其他版本库. 客户端通过repo脚本下载清单库后,脚本会解析清单库中列出的库并自动下载. 首先执行repo init,下载版本库,然后执行repo sync下载所有库的代码. 首先将repo版本库克隆至本地并push到gerrit服务器. git clone https://android.googlesource.com/too…
Sometimes its nice to clean up commits before merging them into your main code repo; in this lesson, we go over using git rebase to squash commits together and then rename the condensed commit message. We also talk about potential issues with rebasin…
常见的代码托管平台GitHub.GitLab和BitBucket等,基本都会使用Git作为版本控制工具.平台一般都提供两种认证方式https和ssh.了解该过程能够更加自由的配置和使用,本文就来简单聊一下这两种认证方式. 1.HTTPS与SSH Git可以使用四种协议来传输数据:本地协议(Local),git 协议,HTTPs 协议和SSH(Secure Shell)协议.对于多人远程协作,多用后两者. 超文本传输协议http运行于网络应用层,是应用层通信协议,使用下层的TCP协议进行传输控制.…
最近爬一个电影票房的网站(url:http://58921.com/alltime),上面总票房里面其实是一张图片,那么我需要把图片识别成文字,来获取票房数据.   我头脑里第一想到的解决方案就是要用tesseract3,别用2,经验来说3相比2,对中文的支持更好一点.   然后,我开始使用pip安装一系列相关的库:   $ pip install Pillow $ pip install pytesser3 $ pip install pytesseract   第一步,首先执行:   $ p…
apiserver-builder git hub api conventions storage api arch step by step,   we can follow it. api config define Install apiserver-builder (go dep FAQ) go env |grep GOPATH >> ~/.profile go env |grep GOROOT >> ~/.profile echo "export GOPATH&…
这是 MIT 6.824 课程 lab1 的学习总结,记录我在学习过程中的收获和踩的坑. 我的实验环境是 windows 10,所以对lab的code 做了一些环境上的修改,如果你仅仅对code 感兴趣,请移步 : github/zouzhitao mapreduce overview 先大致看一下 mapreduce 到底是什么 我个人的简单理解是这样的: mapreduce 就是一种分布式处理用户特定任务的系统.它大概是这样处理的. 用户提供两个函数 mapFunc(k1,v1)-> lis…