Git Server (Linux): Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 51: | Zeile 51: | ||
<pre> | <pre> | ||
sudo mkdir /home/git | sudo mkdir /home/git | ||
sudo chown :www-data /home/git/ | |||
sudo chmod 2775 /home/git/ | |||
cd /home/git/ | cd /home/git/ | ||
git init | git init |
Version vom 1. November 2017, 14:54 Uhr
Noch in Bearbeitung
Installation
PPA-Repository
sudo add-apt-repository ppa:git-core/ppa
Paket installieren
sudo apt-get update sudo apt-get install git
Konfiguration
Ports
Anwendung | Protokoll | Port |
---|---|---|
ssh:// | TCP | 22 |
git:// | TCP | 9418 |
http:// | TCP | 80 |
https:// | TCP | 443 |
Links
https://git-scm.com/book/de/v1/Git-auf-dem-Server-Die-Protokolle
Projektverzeichnis
sudo mkdir /home/git sudo chown :www-data /home/git/ sudo chmod 2775 /home/git/ cd /home/git/ git init
Links
https://wiki.ubuntuusers.de/Git/
https://www.git-tower.com/learn/
http://t3n.de/news/git-eigener-git-server-544264/
Zurück zu Ubuntu