Git httpserver: Difference between revisions

From wikinotes
No edit summary
(Replaced content with "Is this a duplicate of git protocol ?")
Tag: Replaced
 
Line 1: Line 1:
This is useful if you want to expose self-hosted projects to be imported into github.
Is this a duplicate of [[git protocol]] ?
 
{{ NOTE |
If looking to export repos to github, you probably want [[git protocol]] }}
 
= Documentation =
<blockquote>
{| class="wikitable"
|-
| <code>man git-daemon</code> || https://man.archlinux.org/man/extra/git/git-daemon.1.en
|-
|}
</blockquote><!-- Documentation -->
 
= Install =
<blockquote>
<syntaxhighlight lang="bash">
pkg install git
echo "git_daemon_enable=YES" > /etc/rc.conf
</syntaxhighlight>
</blockquote><!-- Install -->

Latest revision as of 15:52, 31 July 2022

Is this a duplicate of git protocol ?