
SCM
kaqi072821
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mercuial Hg configuration
In mac or linux, put the following text in ~/.hgrc. In windows, .hgrc is under the install directory [paths]default = /Users/twer/learn/hg/sandbox[ui]username = zhangruimin[extensio...原创 2011-12-10 10:52:43 · 132 阅读 · 0 评论 -
git alias for corresponding "hg in" "hg out"
hg outgit config --global alias.out "log origin/master..master"use "git out" hg ingit config --global alias.in "log master..origin/master"use "git in"原创 2013-06-28 03:03:24 · 128 阅读 · 0 评论 -
git strip commits corresponding to hg strip
git reset --hard HEAD~1 The ending number represents the number of commits to remove.原创 2013-06-28 03:32:25 · 123 阅读 · 0 评论 -
git install skip tests
mvn clean install -DskipTests原创 2013-08-27 20:26:40 · 154 阅读 · 0 评论