Server IP : 127.0.0.2 / Your IP : 18.219.197.162 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/git/ |
Upload File : |
Git for Debian -------------- When setting up a git.example.org server, there are several things to configure to make everything work nicely together. All this is optional. 1. Run a git-daemon. This allows people to use a git:// URL to access your repositories. This package provides the git-daemon program, to enable a git-daemon service, configure inetd(8) to launch it on demand, or install the git-daemon-run package to run it permanently: cat >> /etc/inetd.conf <<EOF git stream tcp4 nowait nobody /usr/bin/git git daemon --inetd --base-path=/var/lib /var/lib/git git stream tcp6 nowait nobody /usr/bin/git git daemon --inetd --base-path=/var/lib /var/lib/git EOF Or: apt-get install git-daemon-run Wait five seconds for the service to be picked up, and check its status and logs: sv stat git-daemon cat /var/log/git-daemon/current The git daemon by default looks into the directory /var/lib/git/ for repositories (this is configured in /etc/sv/git-daemon/run). It expects the repositories' .git subdirectories in /var/lib/git/, symlinks pointing to the corresponding subdirectories in the repositories are just fine, e.g.: ln -s ~pape/git/foo/.git /var/lib/git/foo.git Now git-clone git://git.example.org/git/repo will work. 2. Install rsync. This allows people to use rsync:// URLs to access your repositories. You then need to add a stanza to /etc/rsyncd.conf that looks like this: [git] path = /var/lib/git readonly = yes Now git-clone rsync://git.example.org/git/repo will work. 3. Configure a web server for git. This allows people to use a http:// URL to access your repositories. Here's an example for an apache virtual server. Add a stanza to your apache configuration that looks like this: <VirtualHost *:80> ServerName git.example.org ServerAdmin webmaster@example.org HeaderName HEADER # bogus but safe DocumentRoot DocumentRoot /var/lib/git ErrorLog /var/log/apache2/git.example.org-error.log CustomLog /var/log/apache2/git.example.org-access.log combined Alias /robots.txt /var/www/cvs.robots.txt Alias /static /usr/share/gitweb/static Alias /git /var/lib/git ScriptAlias / /usr/share/gitweb/gitweb.cgi RedirectMatch permanent "^/~(.*)$" "http://example.org/~$1" </VirtualHost> Now git clone http://git.example.org/git/repo will work. And if you installed the gitweb package, http://git.example.org/ now will display a list of repositories, making them accessible through a web browser. -- Gerrit Pape <pape@smarden.org> Fri, 15 Sep 2006 09:19:37 +0000