Gerrit

Gerrit を LDAP 認証にしてみた

メモ 家の AD に対して、LDAP 認証するように変更してみた。 gerrit.config 抜粋 [gerrit] basePath = git canonicalWebUrl = http://gerritserver:8080/ [database] type = MYSQL hostname = localhost database = reviewdb username = gerrit2 [auth] type…

Gerrit 2.2.2.1 から 2.3 に アップグレードする

gerrit-2.3.war - gerrit - Gerrit 2.3 - Gerrit Code Review - Google Project Hosting から 2.3 の war をダウンロードして、Release notes for Gerrit 2.3 を参考に次のコマンドをたたくだけです。 java -jar gerrit.war init -d site_path

プログラミング生放送勉強会 第15回@大阪 で Gerrit の紹介しました

4/21 プログラミング生放送勉強会 第15回@大阪 [Windows 8, JavaScript, Azure, Kinect 他] #pronama | プログラミング生放送 で 10分程時間をもらえたので、Gerrit の紹介しました。 スライドはこちら Gerrit 使ってみよう View more PowerPoint from odas…

git clone で ssh プロトコルを利用する際に、キーファイルを id_rsa 以外の名前にしたいとき

Gerrit を構築中にハマったのでメモ $HOME/.ssh/config に以下を記載(config ファイルがなければ作成する Host <hostname> PreferredAuthentications publickey IdentityFile /c/work/home/.ssh/id_rsa_pronama これで、 git clone ssh://<user>@<hostname>:29418/<project> で clone 出来ました</project></hostname></user></hostname>…

Gerrit のインストール/設定と Jenkins との連携の設定方法を mybetabook で書きました

第2回Jenkins勉強会 in 大阪 - 日本語 - Jenkins Wiki で @kiy0taka が紹介していた Gerrit を使ってみようとインストール/設定したんですが、かなりハマったのでメモってみました。 Linux も初心者だったので、サーバーのインストールから書いてます。 ブロ…