上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 46 下一页
  2015年12月30日
摘要: 命令格式git init [-q | --quiet] [--bare] [--template=] [--separate-git-dir ] [--shared[=]] [directory]命令参数--quiet, -q 安静模式,只打印错误和警告信息。实例a) 创建... 阅读全文
posted @ 2015-12-30 11:35 huey2672 阅读(1516) 评论(0) 推荐(0) 编辑
摘要: 命令参数--get获取指定的配置项。--global对于写选项:全局配置,将参数配置于~/.gitconfig 而不是仓库目录下的.git/config。对于读选项:只从~/.gitconfig 文件中读取配置。--local 对于写选项:将参数配置于仓库目录下的.git/config,这是默认的... 阅读全文
posted @ 2015-12-30 10:51 huey2672 阅读(620) 评论(0) 推荐(0) 编辑
  2015年12月29日
摘要: Downloading and Installing Git Download for Linux and Unix Integration with Eclipse Eclipse 提交工程至 GitHub Cheat Sheet Setup and Config config help Gett 阅读全文
posted @ 2015-12-29 11:40 huey2672 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 1. Maven 依赖 log4j log4j 1.2.17 2. 配置log4j.propertieslog4j.rootLogger = warn, STDOUT, DEBUG, ERROR## Consolelog4j.appender.... 阅读全文
posted @ 2015-12-29 10:41 huey2672 阅读(738) 评论(0) 推荐(0) 编辑
  2015年12月28日
摘要: It is easiest to install Git on Linux using the preferred package manager of your Linux distribution.Debian/Ubuntu$ apt-get install gitFedora$ yum ins... 阅读全文
posted @ 2015-12-28 22:19 huey2672 阅读(500) 评论(0) 推荐(0) 编辑
  2015年12月24日
摘要: 元字符与转义正则表达式的元字符包括:^ $ . [ ] { } - ? * + ( ) | \元字符有着特殊的意义,当需要取消元字符的特殊含义时,需要在元字符之前加上反斜线字符 \。锚^ 和 $ 在正则表达式中被当作锚,其中 ^ 匹配字符串的起始位置,$ 匹配字符串的结束位置。任意字符. 匹配除 \... 阅读全文
posted @ 2015-12-24 20:17 huey2672 阅读(304) 评论(0) 推荐(0) 编辑
  2015年12月23日
摘要: AboutjQuery Hotkeys is a plug-in that lets you easily add and remove handlers for keyboard events anywhere in your code supporting almost any key comb... 阅读全文
posted @ 2015-12-23 16:31 huey2672 阅读(244) 评论(0) 推荐(0) 编辑
  2015年12月17日
摘要: Keyboard 事件onkeydown:在用户按下按键时触发。onkeypress:在用户敲击按钮时触发。onkeyup:当用户释放按键时触发。示例 KeyCode KeyCode 阅读全文
posted @ 2015-12-17 16:46 huey2672 阅读(599) 评论(0) 推荐(0) 编辑
  2015年12月15日
摘要: Mousetrap is a simple library for handling keyboard shortcuts in Javascript.It is around 2kb minified and gzipped and 4.5kb minified, has no external ... 阅读全文
posted @ 2015-12-15 20:48 huey2672 阅读(451) 评论(0) 推荐(0) 编辑
  2015年12月1日
摘要: 适配器模式:将一个类的接口,转换成客户期望的另一个接口。适配器让原本接口不兼容的类可以合作无间。应用场景假设已有一个软件系统,你希望它能和一个新的厂商类库搭配使用,但是这个新厂商所设计出来的接口不同于旧厂商的接口:你不想改变现有的代码,解决这个问题(而且你也不能改变厂商的代码)。所以该怎么做?你可以... 阅读全文
posted @ 2015-12-01 10:21 huey2672 阅读(254) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 46 下一页