
CI
iteye_9601
这个作者很懒,什么都没留下…
展开
-
gitHub的SSH配置
git push 时遇权限问题: bogon:jsfrf han$ git pushPermission denied (publickey).fatal: The remote end hung up unexpectedly 解决办法如下: 1.进入ssh目录并检查bogon:jsfrf han$ cd ~/.sshbogon:.ssh han$ ls ...原创 2011-12-24 16:18:11 · 167 阅读 · 0 评论 -
Git代理
git clone git://github.com/SpringSource/spring-framework.gitCloning into 'spring-framework'...fatal: unable to connect to github.com:github.com[0: 207.97.227.239]: errno=Connection timed out...原创 2012-12-18 17:01:05 · 106 阅读 · 0 评论 -
git hook汇总
2012.11.25 测试commit-msg钩子: notepad readme #!/bin/sh echo 0-------------------------------------------------------- echo "\$1= " $1 git status echo 1-------------------------...原创 2012-11-25 09:13:13 · 313 阅读 · 0 评论 -
git shortcuts
git config --global alias.d1 "diff" ~/.gitconfig [core] autocrlf = input[color] diff=auto ui = auto branch=auto[alias] ci = commit co ...原创 2013-11-18 15:04:29 · 149 阅读 · 0 评论 -
bitbucket
https://bitbucket.org/feuyeux原创 2013-11-08 15:28:39 · 174 阅读 · 0 评论 -
Android构建工具
构建工具buckBuck: An Android (and Java!) build toolhttp://facebook.github.io/buck/ Facebook Buck和xctool:针对Android和iOS的开源构建工具http://www.infoq.com/cn/news/2013/05/Facebook-buck-xctool-build ...原创 2013-11-05 02:15:02 · 268 阅读 · 0 评论 -
gitHub同步
MARS-MacPro:workspace han$ mkdir backup_jsfrfMARS-MacPro:workspace han$ cd backup_jsfrf/ 克隆MARS-MacPro:backup_jsfrf han$ git clone git@github.com:feuyeux/jsfrf.gitCloning into jsfrf...re...原创 2011-12-24 23:36:48 · 97 阅读 · 0 评论 -
gitHub删除分支
mkdir /tmp/git-emptycd /tmp/git-empty/git initgit push 'https://feuyeux@github.com/feuyeux/jsfrf.git' :'old-branch' 格式:git push git库名 空格:git分支名原创 2011-12-24 19:44:23 · 218 阅读 · 0 评论 -
gitHub基本操作
在工程根目录,初始化git工程bogon:jsfrf han$ git initInitialized empty Git repository in /Users/han/workspace/jsfrf/.git/ 添加并提交全部文件到git库bogon:jsfrf han$ git add -Abogon:jsfrf han$ git commit -m '...原创 2011-12-24 19:24:08 · 131 阅读 · 0 评论 -
[CI Architect] gitolite3的安装与配置
版本控制管理是持续集成(CI)中一个重要的环节。时下,最流行的SCM当属GIT。在GIT服务器中,gitolite是一个小巧而易用的服务器。相比github,它并不强大,但企业内部做CI,绝对胜任。本文介绍gitolite最新版本3.3的安装和配置。gitolite是perl开发的git server 地址为:https://github.com/sitaramc/gitolite。...2013-02-07 14:08:20 · 252 阅读 · 0 评论