
SCM
iteye_3854
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
msysgit - Git for Windows
[url]http://code.google.com/p/msysgit/[/url]本来想用Eclipse的GIT plugin - EGit来clone网络上一个repo的code的,结果EGit抛出异常:java.io.IOException: Could not delete file D:\linphone-android\.git\index.lock at or...原创 2011-02-09 13:19:39 · 118 阅读 · 0 评论 -
源码搜索引擎 OpenGrok 0.11 发布
OpenGrok 0.11 发布了,该版本增加 PHP、VB、JavaScript 和独立的 C# 代码分析器;对整个应用的UI进行重构,更新 jQuery 到 1.4.4 版本,兼容 SSL、SSO 和 mod_proxy ,修复了不少 bug。OpenGrok一个快速、便于使用的源代码搜索与对照引擎。它帮助你搜索,对照,定位你的源代码树。它能够明白各种程序文件格式和版本控制历...原创 2012-02-16 12:14:47 · 154 阅读 · 0 评论 -
JenkinsMobi/HudsonMobi - 监控Jenkins/Hudson服务的客户端应用
http://www.jenkins-ci.mobi/http://www.hudson-mobi.com/https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Mobi,+the+iPhone,+iPod+and+Android+client+for+Hudson+CIhttp://jenkins-ci.org/aggreg...2012-02-16 23:03:10 · 147 阅读 · 0 评论 -
Git push tags to remote repo
By default, the ‘git push’ command will not transfer tags to remote servers. To do so, you have to explicitly add a –tags to the ‘git push’ command.[master]$ git push --tagsCounting objects: 50,...原创 2012-02-21 14:44:44 · 398 阅读 · 0 评论 -
hudson+findbugs的配置方法及无数坑爹的陷阱
http://hi.baidu.com/dburu/blog/item/d34bb68b1fb03b609e2fb4b4.html Hudson是一个简单而非常强大的集成测试工具,结合maven junit findbugs svn ant 等等数以百计的插件,可以大有作为,今天只说findbugs。Hudson本身的安装与配置就不说了,非常简单,下载war包直接扔到tomca...原创 2012-02-27 22:10:35 · 297 阅读 · 0 评论 -
jenkins-git-ant实现持续集成及远程部署
pdf文档格式,中文的,总结的相当不错。原创 2012-02-27 22:31:26 · 227 阅读 · 0 评论 -
Trigger Cloudbees Jenkins build upon commits to bitbucket git repo
1. On Cloudbees job configure, "Build Triggers" segment, check "Trigger builds remotely (e.g., from scripts)" box, and input any string in "Authentication Token" field, such as 123456. 2. On b...原创 2012-02-29 17:03:52 · 190 阅读 · 0 评论 -
[Subclipse-users] Could not resolve hostname
Open your Eclipse preferences and go toTeam > SVN. Make sure that JavaHL is selected. JavaHL andTortoiseSVN are both using the same API's from SVN and should behavethe same.Make s...原创 2011-05-09 12:57:20 · 158 阅读 · 0 评论 -
Eclipse的Mercurial插件 HgEclipse
HgEclipse 是一个 Eclipse 支持 Mercurial 分布式版本控制系统的插件。Eclipse 的在线安装地址:http://hge.javaforge.com/hgeclipse原创 2011-05-16 20:46:39 · 208 阅读 · 0 评论 -
maven设置HTTP代理
http://maven.apache.org/Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, rep...原创 2012-03-16 14:52:30 · 247 阅读 · 0 评论 -
CloudBees提供的免费Jenkins (prev. Hudson) CI (Continuous Integration)服务
下面我创建的Jobs 下面是某个Job的具体信息: 下面是免费用户的限制,每个月300分钟应该足够了。如果是开源项目,是每月1000分钟,前提是在主页上加上CloudBees的logo: 一些入门链接:Getting started with Jenkinshttp://wiki.cloudbees.com/bin...2012-02-15 20:56:17 · 219 阅读 · 0 评论 -
Git、Gerrit与Jenkins/Hudson CI服务器
http://www.infoq.com/cn/articles/Gerrit-jenkins-hudson 本文讲述了如何为基于团队的代码审查系统配置Git、Gerrit与Jenkins/Hudson,正如我在《Git, Gerrit and Jenkins for iOS development》和《Gerrit Git Review with Jenkins CI Se...原创 2012-02-10 11:32:37 · 174 阅读 · 0 评论 -
[SCM]源码管理 - mercurial
http://www.cnblogs.com/itech/archive/2011/08/03/2126116.html 一 分布式的源码管理工具Mercurialmercurial 作为3大主流的分布式源码管理工具,已经被广泛的使用。 例如 googlecode.com 和 codeplex.com 都支持mercurial作为源码管理工具。主页:http://mer...原创 2012-02-05 17:55:47 · 329 阅读 · 0 评论 -
GIT Configuration
既然安装了GIT for Windows, 那免不了需要配置一下. 这里backup自己的configuration.配置的命令比如:[code="cmd"]$ git config --global user.name "Zhang San"$ git config --global user.email "zhangsan.android@gmail.com"$ git c...原创 2011-02-09 13:49:47 · 445 阅读 · 0 评论 -
为Git设置代理
有两篇文章写的都不错, 这里转载一下. 各种SCM工具下使用http代理下载源码经常有使用SCM下载源码的必要,尤其是软件开发人员。但偶们的网络环境经常逼得我们不得不使用代理,或者是因为速度,或者是因为直连根本就不通。而且源码通常是零零碎碎的几千几万个小文件,不像一般的软件是单个的文件,一个下载工具即可搞定。1,CVSCVS使用代理非常麻烦,似乎不能用http代...原创 2011-03-01 15:35:07 · 776 阅读 · 0 评论 -
一个免费的私有代码存放仓库
https://bitbucket.org/免费可以存放私有代码支持Git和Mercurial版本控制系统如果大家想空闲时间写点私有代码的可以考虑使用仓库. Note1: bitbucket是Atlassian公司提供的,大名鼎鼎的JIRA问题跟踪系统就是该公司的产品之一。...2012-01-23 14:54:25 · 1251 阅读 · 0 评论 -
Typical .gitignore file for an Android app
# built application files*.apk*.ap_# files for the dex VM*.dex# Java class files*.class# generated filesbin/gen/# Local configuration file (sdk path, etc)local.propert...原创 2012-01-23 16:38:41 · 160 阅读 · 0 评论 -
A Collection of Useful .gitignore Templates
https://github.com/github/gitignore GlobalSeptember 02, 2011Merge pull request #183 from x3ro/master [defunkt]Actionscript.gitignoreNovember 09, 2010Update to the Actionscri...2012-01-23 16:42:41 · 220 阅读 · 0 评论 -
访问Bitbucket的手机应用
http://blog.bitbucket.org/2011/12/21/mobile-apps-for-bitbucket/ BitbeakerRepoManIssue BucketiOpenSource2012-01-26 20:55:33 · 176 阅读 · 0 评论 -
Windows下msysgit通过http代理上网
网上有各种方法,有效的或者无效的,下面这种方法对我来说有效:1. 在"我的电脑"->"属性"->"高级"->"环境变量", 新建一个环境变量https_proxy,值为myproxy:myproxyport2. 重新启动msysgit3. Works well 更新:2012/02/16更方便的方法是在msysgit使用declare命令来设置代理...2012-01-30 11:52:59 · 124 阅读 · 0 评论 -
msysgit - Git for Windows
http://code.google.com/p/msysgit/https://bitbucket.org/ 在Windows下使用msysgit工具加上bitbucket提供的private Git repo,完美配合。原创 2012-01-30 20:16:43 · 150 阅读 · 0 评论 -
Jenkins入门总结
http://www.cnblogs.com/itech/archive/2011/11/23/2260009.html 在网上貌似没有找到Jenkins的中文的太多的文档,有的都是关于Hudson的一些零零散散的,所以自己边学习边实践总结了以下系列文章,希望有助于大家对于Jenkins的使用。 本系列文章是基于我3年多的SCM+build release经验,总结了最常用的最...原创 2012-02-05 17:54:34 · 188 阅读 · 0 评论 -
Jenkins CLI
https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI原创 2012-03-25 17:50:40 · 94 阅读 · 0 评论