diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:34:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:34:29 +0000 |
commit | cb99946239e45aef68c2a7168262def132399550 (patch) | |
tree | 0949c7cb00d7da2987826edafff9d8fba93e95f0 /debian/git-daemon-sysvinit.README.Debian | |
parent | Adding upstream version 1:2.43.0. (diff) | |
download | git-debian/1%2.43.0-1.tar.xz git-debian/1%2.43.0-1.zip |
Adding debian version 1:2.43.0-1.debian/1%2.43.0-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/git-daemon-sysvinit.README.Debian')
-rw-r--r-- | debian/git-daemon-sysvinit.README.Debian | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/debian/git-daemon-sysvinit.README.Debian b/debian/git-daemon-sysvinit.README.Debian new file mode 100644 index 0000000..cea76b6 --- /dev/null +++ b/debian/git-daemon-sysvinit.README.Debian @@ -0,0 +1,31 @@ +git-daemon-sysvinit for Debian +------------------------------ + +This package enables a git-daemon service. This allows people to use a +git:// URL to access your repositories. + +After installing this package, the daemon needs to be enabled in +/etc/default/git-daemon by setting: + + GIT_DAEMON_ENABLE=false + +to: + + GIT_DAEMON_ENABLE=true + +After that, the git daemon can be started with: + + # /etc/init.d/git-daemon start + +The git daemon by default looks into the directory /var/lib/git/ for +repositories (this is configured in /etc/default/git-daemon). It expects +the repositories' .git subdirectories in that directory, symlinks +pointing to the corresponding subdirectories in the repositories are just +fine, e.g.: + + ln -s ~daniel/git/foo/.git /var/lib/git/foo.git + +This makes 'git-clone git://git.example.org/git/foo' to clone the foo +repository on remote machines work. + + -- Daniel Baumann <daniel@debian.org> Tue, 19 Oct 2010 00:54:58 +0200 |