LoginSignup
2
2

More than 5 years have passed since last update.

自分用Gitデーモン作成

Last updated at Posted at 2016-01-26

Gitリポジトリの作成

Gitリポジトリ用のフォルダ作成

$ mkdir sample.git

空のGitリポジトリを作成

$ cd sample.git
$ git init --bare --shared=true

Gitの公開設定

$ touch git-daemon-export-ok

git-daemon-export-okファイルを作成
認証なしで公開するための設定

Gitデーモンの起動

$ git daemon --export-all --enable=receive-pack

デーモンの起動

2
2
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
2
2