1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS 6.7にBitNami Redmineを導入する際のGit連携

Posted at

CentOS67にBitNami Redmineを導入する際の備忘録
OS: CentOS 6.7 x64
Redmine: BitNami Redmine 3.2.0

Redmineのインストール

基本的にこちらの方の方法で問題無くインストールまではOK

Gitとの連携

  1. Remote repositoryをRedmineと共用にする為のユーザー作成

    useradd git
    
  2. redmineのサービスをgitグループへ追加

    usermod -G git daemon
    
  3. 共用ディレクトリを作成して,所有者を上記で作成したユーザーへ変更

    chown -R /var/git
    [git@centos67 opt]$ ls -l
    total 12
    drwxr-xr-x   3 git  git  4096 Jan 12 23:56 git-repo
    drwxr-xr-x  17 root root 4096 Jan 12 22:34 	redmine-3.2.0-0
    drwxr-xr-x.  2 root root 4096 Mar 26  2015 rh
    

上記までを実施してRedmine上でリポジトリパスを登録すれば見えるようになるはず.

参考

http://qiita.com/isaac-otao/items/1e6b57809e3841d600c2
http://easyramble.com/create-user-group.html
http://d.hatena.ne.jp/thegoodbadugly/20130116/1358316032

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?