5

gitlab 5.3 を使用する前に、すべて正常に動作します。

今、私は 5.4 と 6.0 経由で gitlab 6.1 にアップグレードしましたが、今はプッシュできません。

サーバーのインストールチェック:

root@ks:/home/git/gitlab# sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production

System information
System:     Debian 6.0.7
Current User:   git
Using RVM:  no
Ruby Version:   1.9.3p327
Gem Version:    2.1.8
Bundler Version:1.3.5
Rake Version:   10.1.0

GitLab information
Version:    6.1.0
Revision:   b595503
Directory:  /home/git/gitlab
DB Adapter: mysql2
URL:        http://git.gigadi.org
HTTP Clone URL: http://git.gigadi.org/some-project.git
SSH Clone URL:  git@git.gigadi.org:some-project.git
Using LDAP: no
Using Omniauth: no

GitLab Shell
Version:    1.7.1
Repositories:   /home/git/repositories/
Hooks:      /home/git/gitlab-shell/hooks/
Git:        /usr/bin/git



root@ks:/home/git/gitlab# sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
Checking Environment ...

Git configured for git user? ... yes
Has python2? ... yes
python2 is supported version? ... yes

Checking Environment ... Finished

Checking GitLab Shell ...

GitLab Shell version >= 1.7.1 ? ... OK (1.7.1)
Repo base directory exists? ... yes
Repo base directory is a symlink? ... no
Repo base owned by git:git? ... yes
Repo base access is drwxrws---? ... yes
update hook up-to-date? ... yes
update hooks in repos are links: ... 


Checking GitLab Shell ... Finished

Checking Sidekiq ...

Running? ... yes

Checking Sidekiq ... Finished

Checking GitLab ...

Database config exists? ... yes
Database is SQLite ... no
All migrations up? ... yes
GitLab config exists? ... yes
GitLab config outdated? ... no
Log directory writable? ... yes
Tmp directory writable? ... yes
Init script exists? ... yes
Init script up-to-date? ... yes
projects have namespace: ... 

Projects have satellites? ... 

Redis version >= 2.0.0? ... yes
Your git bin path is "/usr/bin/git"
Git version >= 1.7.10 ? ... yes (1.8.3)

Checking GitLab ... Finished

ローカルマシンで試すと:

GIT_SSH='ssh -v' git push -f http://mydomain.org/xxx/xxx.git master

結果は次のとおりです。

Counting objects: 154, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (135/135), done.
Writing objects: 100% (154/154), 184.75 KiB, done.
Total 154 (delta 22), reused 0 (delta 0)
remote: /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/dsl.rb:33:in `eval_gemfile': Gemfile syntax error: (Bundler::GemfileError)
remote: /home/git/gitlab/Gemfile:14: syntax error, unexpected ':', expecting $end
remote: gem "mysql2", group: :mysql
remote:                     ^
remote:     from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/dsl.rb:9:in `evaluate'
remote:     from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/definition.rb:19:in `build'
remote:     from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler.rb:148:in `definition'
remote:     from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler.rb:116:in `setup'
remote:     from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/setup.rb:17
remote: error: hook declined to update refs/heads/master
To http://mydomain.org/xxx/xxx.git
 ! [remote rejected] master -> master (hook declined)
error: failed to push some refs to 'http://mydomain.org/xxx/xxx.git'

i apache を使用して debian 6.0.7 で gitlab を使用する

問題はどこにありますか?

4

3 に答える 3

12

私はこのように私の問題を解決します:

vim /home/git/gitlab-shell/hooks/update

最初の行を次から変更

#!/usr/bin/env ruby

#!/usr/local/bin/ruby

今私のプッシュはうまくいきます!

考えるVonC

于 2013-10-19T12:54:29.557 に答える
2

まず、http url でプッシュすると、ssh はまったく関与しません。

  • 設定GIT_SSHは大差ありません。
  • 設定GIT_CURL_VERBOSE=1によって、 の出力に違いが生じgit pushます。

次に、問題 3373問題 2285問題 https://github.com/gitlabhq/gitlabhq/issues/3349で示されているように、... これは ruby​​ バージョンの問題です。

RVM から 1.9.3 がインストールされていることは 99% 確信していますが、システム Ruby もインストールされています (チェックしてください/usr/bin/ruby --version)。
トラフgit@gitlab(ssh) に接続すると、シェルが起動されるため、rvm が適切に初期化されて使用され、すべてが機能しますが、HTTP を介して実行すると、gitlab がgitlab-shell直接起動され、何らかの理由rvmで機能せず、システム バージョンが使用されます。

于 2013-10-19T07:41:19.847 に答える
1

ラマザンが上で言ったように、私は問題を解決しました vim /home/git/gitlab-shell/hooks/update 変更の最初の行から

!/usr/bin/env ルビー

!/usr/local/bin/ルビー

于 2013-11-05T08:08:06.210 に答える