git
gxl_ct001
这个作者很懒,什么都没留下…
展开
-
[转]GIT 日常使用命令总结
GIT 日常使用命令总结 guibin.beijing@gmail.com 本文总结了日常开发中git的常用命令,会逐步更新。 1) 回退到上一个commit的版本 引用git reset --hard HEAD~1 HEAD is now at 907af0c xxxx some comments这个命令很危险,他会彻底删除最近一次提交的代码,不可恢复。而且在执行这个命令时,如果工...原创 2014-05-23 11:03:49 · 116 阅读 · 0 评论 -
[转]怎么用git clone 远程的所有分支
首先, clone 一个远端仓库,到其目录下: $ git clone git://example.com/myproject$ cd myproject 然后,看看你本地有什么分支: $ git branch* master 但是有些其他分支你在的仓库里面是隐藏的,你可以加上-a选项来查看它们: $ git branch...原创 2014-04-27 02:41:59 · 672 阅读 · 0 评论 -
Git Push Fails - fatal: The remote end hung up unexpectedly
$ git pushCounting objects: 2332669, done.Delta compression using up to 16 threads.Compressing objects: 100% (360818/360818), done.error: RPC failed; result=22, HTTP code = 411fatal: ...原创 2014-04-27 02:14:27 · 125 阅读 · 0 评论 -
[转] 使用git error: RPC failed; result=22, HTTP code = 411
使用git提交比较大的文件的时候可能会出现这个错误 error: RPC failed; result=22, HTTP code = 411 fatal: The remote end hung up unexpectedly fatal: The remote end hung up unexpectedly Everything up-to-date 这样的话首先改一...原创 2014-10-11 18:02:58 · 124 阅读 · 0 评论 -
gitlab push ! [remote rejected] master -> master (pre-receive hook declined)
这个问题我找到了自己的解决方法:gitlab-shell 用 master 分支时 gitlab-shell/hooks/ 目录下 没有 update 文件,用以下命令:# cd /home/git/gitlab-shell/# git branch v1.9.8 这样gitlab-shell/hooks/ 目录下就有了 update 文件,再执行 push 就可以成功了。...原创 2014-09-24 16:38:18 · 2170 阅读 · 0 评论 -
[转] centOS 6.5 安装 gitlab
Distribution : CentOS 6.5 MinimalGitLab version : 6.0 - 7.1Web Server : Apache, NginxInit system : sysvinitDatabase : MySQL, PostgreSQLContributors : @nielsbasjes,...原创 2014-09-23 15:19:59 · 251 阅读 · 0 评论 -
[转]CI 系统搭建:二. GitLab 的安装配置
CI 系统搭建:二. GitLab 的安装配置 An error occurred while installing github-linguist (4.7.6), and Bundler cannotcontinue.Make sure that `gem install github-linguist -v '4.7.6'` succeeds beforebundling....原创 2014-09-21 23:17:16 · 159 阅读 · 0 评论 -
Ubuntu 1204 安装 GitLab 出现问题集
1,安装 bundle 时少了 rugged 0.21.0$ sudo -u git -H bundle install --deployment --without development test postgres aws Gem files will remain installed in /home/git/gitlab/vendor/bundle/r...原创 2014-09-21 08:19:51 · 700 阅读 · 0 评论 -
Ubuntu 1204 安装 GitLab 出现 502
Ubuntu 1204 安装 GitLab 出现 502 GitLab is not responding. 问题描述: 502 GitLab is not responding. Please contact your GitLab administrator if this problem persists. ...原创 2014-09-12 11:34:59 · 328 阅读 · 0 评论 -
[转]centOS 6.3 安装 最新版git
yum install curlyum install curl-develyum install zlib-develyum install openssl-develyum install perl-CPANyum install cpioyum i...原创 2015-06-01 17:34:29 · 214 阅读 · 0 评论 -
gitlab 修改代码文件背景
gitlab 7.1一,登录到gitlab 系统二,点击右上角的 Profile settings三, 选择左侧菜单 Design原创 2015-05-26 11:02:55 · 1096 阅读 · 0 评论 -
[转]Could not find modernizr-2.6.2 in any of the sources 解决办法:
[git@Git gitlab]$ vi Gemfilesource "https://rubygems.org"改为source "http://rubygems.org"[git@Git gitlab]$ bundle install --deployment --without development test postgresFetching source index from...原创 2014-08-14 23:15:26 · 187 阅读 · 0 评论 -
[转]SmartGit 授权文件 Free Trial License to Non-Commercial
Changing SmartGit Free Trial License to Non-CommercialBy weuo On March 16, 2013 · Add Comment To alter the license.First, go toWindows: %APPDATA%\syntevo\SmartGit\ OS X: ~/Library/Pre...原创 2014-05-23 11:04:52 · 350 阅读 · 0 评论 -
[转]ubuntu下 升级git
[转]ubuntu下 升级git # sudo apt-add-repository ppa:git-core/ppa # sudo apt-get update # sudo apt-get install git sudo apt-get dist-upgrade reference materials: ubuntu下 升级git hg原...原创 2014-04-27 11:51:32 · 177 阅读 · 0 评论