上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: 对于按键事件,Android调用mDevices[i]->layoutMap->map进行映射。映射实际是由 KeyLayoutMap::map完成的,KeyLayoutMap类里读取配置文件qwerty.kl,由配置 文件 qwerty.kl 决定键值的映射关系。你可以通过修 改./develop... 阅读全文
posted @ 2014-07-01 13:20 催眠术 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 本文主要内容摘自liyanrui.m2@gmail.com的《Git 使用指南》和Git Community Book 中文版一、前言 Git是一个快速、可扩展的分布式版本控制系统,它具有极为丰富的命令集,对内部系统提供了高级操作和完全访问.Git与你熟悉的大部分版本控制系统的差别是很大的。也许你熟... 阅读全文
posted @ 2014-07-01 13:13 催眠术 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 使用Git的第一件事就是设置你的名字和email,这些就是你在提交commit时的签名。示例1$ git config --global user.name "Robin Hu"$ git config --global user.email "hudashi@gmail.com"执行了上面的命令后... 阅读全文
posted @ 2014-07-01 13:12 催眠术 阅读(757) 评论(0) 推荐(0) 编辑
摘要: 一、前言git add命令主要用于把我们要提交的文件的信息添加到索引库中。当我们使用git commit时,git将依据索引库中的内容来进行文件的提交。二、基本git add表示 add to index only files created or modified and not those de... 阅读全文
posted @ 2014-07-01 13:11 催眠术 阅读(266) 评论(0) 推荐(0) 编辑
摘要: git merge的基本用法为把一个分支或或某个commit的修改合并现在的分支上。 我们可以运行git merge -h查看其命令usage:gitmerge[options] [...] or:git merge[options] HEAD or:git merge--abort -n ... 阅读全文
posted @ 2014-07-01 13:10 催眠术 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 原文:http://web.mit.edu/~mkgray/project/silk/root/afs/sipb/project/git/git-doc/git-diff.htmlgit diff可以比较working tree同index之间,index和git directory之间,worki... 阅读全文
posted @ 2014-07-01 13:09 催眠术 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 翻译整理自:http://web.mit.edu/~mkgray/project/silk/root/afs/sipb/project/git/git-doc/git-clone.html在使用git来进行版本控制时,为了得一个项目的拷贝(copy),我们需要知道这个项目仓库的地址(Git URL)... 阅读全文
posted @ 2014-07-01 13:07 催眠术 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 翻译整理自:http://web.mit.edu/~mkgray/project/silk/root/afs/sipb/project/git/git-doc/git-commit.html在用git来进行版本控制时,我需要执行git commit命令,将索引内容添加到仓库中。示例1:git com... 阅读全文
posted @ 2014-07-01 13:03 催眠术 阅读(573) 评论(0) 推荐(0) 编辑
摘要: 本文翻译整理自:http://web.mit.edu/~mkgray/project/silk/root/afs/sipb/project/git/git-doc/git-rm.html在git中我们可以通过git rm命令把一个文件删除,并把它从git的仓库管理系统中移除。但是注意最后要执行git... 阅读全文
posted @ 2014-07-01 13:02 催眠术 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 本文整理自:http://web.mit.edu/~mkgray/project/silk/root/afs/sipb/project/git/git-doc/git-push.htmlhttp://apps.hi.baidu.com/share/detail/11403994在git中,我们可以通... 阅读全文
posted @ 2014-07-01 13:01 催眠术 阅读(622) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页