1. 程式人生 > >Ubuntu下安裝git server

Ubuntu下安裝git server

1.更新:防止安裝git依賴包時出錯

sudo apt-get update

sudo apt-get upgrade

2.安裝openssh和openssh-client:安裝問題詳見我的其他部落格

3.安裝git

sudo apt-get install git-core

4、配置git使用者

  在Ubuntu Server上新增一個git使用者,用於為安裝gitosis做準備

  $ sudo adduser --system --shell /bin/bash --group git  // 建立使用者 git,並設定使用者的 shell 為可登入的 shell,如 /bin/bash,同時新增同名的使用者組。


  $ sudo adduser git ssh  // 有的系統,只允許特定的使用者組(如 ssh 使用者組)的使用者才可以通過 SSH 協議登入,這就需要將新建的 git 使用者新增到 ssh 使用者組中。


  $ sudo passwd git  // 為 git 使用者設定口令。


  $ ssh-copy-id [email protected]  // 管理員在客戶端使用下面的命令,建立無口令登入。 

 5、建立git Server的倉庫儲存

  $ sudo mkdir /home/git/repositories  // 建立git倉庫儲存目錄

  $ sudo chown git:git /home/git/repositories  // 設定只允許git使用者才能訪問此目錄

  $ sudo chmod 755 /home/git/repositories  // 設定目錄訪問的可讀寫或執行的許可權

  初始化一下伺服器的git使用者,這一步其實是為了安裝gitosis做準備。在任何一 臺客戶端機器上使用git,第一次需要初始化一下:

  $ git config --global user.name "name"       // 例如:james

  $ git config --global user.email "[email protected]"   // 例如:[email protected]

  6、獲取Gitosis,並安裝

  Gitosis 就是一套用來管理 authorized_keys

檔案和實現簡單連線限制的指令碼。簡單地說,Gitosis就是git的許可權策略控制器。

  因為Gitosis原始碼安裝方式通過python方式,所以這裡要檢測是否安裝了python的setup tool,沒有即安裝此工具, 這個也是為了gitosis做準備:

  $ sudo apt-get install python-setuptools

  去到一個臨時目錄

  $ cd /tmp

  $ git clone https://github.com/res0nat0r/gitosis.git  // 下載Gitosis的原始碼

  $ cd /tmp/gitosis

  $ sudo python setup.py install

  說明:Gitosis有一個改進的升級版Gitolite,這裡以安裝Gitosis為標準,所以不對Gitolite介紹。Gitosis安裝完之後,即Git伺服器就安裝完成,接下來,需要為Git設定一個管理員,通過Gitosis初始化之後,才能正常使用Git作為版本控制進行相關版本管理。

如果你將作為git伺服器的管理員,那麼在你的電 腦上(另一臺pc)生成ssh公鑰:
[email protected]:~$ ssh-keygen -t rsa [email protected]:/tmp/gitosis$ sudo chmod a+r /home/zouyu/.ssh/id_rsa.pub 讓gitosis執行起來:
[email protected]:/tmp/gitosis$ sudo -H -u git gitosis-init </home/zouyu/.ssh/id_rsa.pub gitosis的有趣之處在於,它通過一個git倉庫來管理配置檔案,倉庫就放在了/home/repo/gitosis- admin.git。我們需要為一個檔案加上可執行許可權: cd /home/git sudo passwd root
su cd repositories cd gitosis-admin.git/
sudo chmod 755 /home/git/repositories/gitosis-admin.git/hooks/post-update

exit

在伺服器上新建一個測試專案倉庫

我建了一個叫“teamwork”的倉庫。
切換到Git使用者:
[email protected]:/home/git$ su - git
$ cd /home/prj_git
$ mkdir teamwork.git
$ cd teamwork.git
$ git init --bare
$ exit

但是,到目前為止,這只是一個空倉庫,空倉庫是不能clone下來的。為了能做clone,我們必須先讓某個有許可權的人放一個初始化的版本到倉庫中。 所以,我們必須先修改一下gitosis-admin.

管理gitosis的配置檔案

剛剛提到,gitosis本身的配置也是通過git來實現的。在你自己的開發機裡,把gitosis-admin.git這個倉庫clone下來,就可以以管理員的身份修改配置了。

如果出現: fatal: '~/gitosis-admin.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
改成:
該目錄下的keydir目錄是用來存放所有需要訪問git伺服器的使用者的ssh公鑰: 各個使用者按照前面提到的辦法生成各自的ssh公鑰檔案後,把所有人的 ssh公鑰檔案都拿來,按名字命名一下,比如b.pub, lz.pub等,統統拷貝到keydir下: 修改gitosis.conf檔案,我的配置大致如下:
[gitosis] [group gitosis-admin]
writable = gitosis-admin
members = 
[group hello]
writable = teamwork
members = 
[email protected] b [group hello_ro]
readonly = teamwork
members = lz
這個配置檔案表達瞭如下含義:gitosis-admin組成員有a, usr,該組對gitosis-admin倉庫有讀寫許可權;
team組有a,b兩個成員,該組對teamwork倉庫有讀寫許可權;
team_ro組有lz一個成員,對teamwork倉庫有隻讀許可權。

初始化測試專案

好了,現在伺服器就搭建完了,並且有一個空的專案teamwork在伺服器上。接下來呢?當然是測試一下,空倉庫是不能clone的,所以需要某一個有寫許可權的人初始 化一個版本。就我來做吧,以下是在客戶端完成。 到此為止teamwork已經有了一個版本了,team的其他成員只要先clone一下 teamwork倉庫,就可以任意玩了。 $ cd teamwork
$ vim hello
$ git add .
$ git commit -am “b add”
$ git push origin master
$ exit

新增已有git專案

另外:如果你有一個現成的git倉庫,想放到 gitserver上供team使用(比如你clone了一個官方的kernel倉庫,想在內部使用它作為基礎倉庫),怎麼辦呢。
首先需要從你的工作倉庫中得到一個純倉庫, 比如你的工作目錄為~/kernel, 你想匯出純倉庫到你的優盤裡,然後拷貝到gitserver上去。
$ git clone –bare ~/kernel /media/udisk
然後就拿著優盤,交給gitserver的管理員,讓他拷貝到/home/repo/下,同時需要配置 gitosis相關配置檔案哦,這個就不用再說了吧。比如:下載ALSA庫:
git clone git://android.git.kernel.org/platform/external/alsa-lib.git
git clone git://android.git.kernel.org/platform/external/alsa-utils.git
生成bare庫
git clone –bare alsa-lib alsa-lib.git
git clone –bare alsa-utils alsa-utils.git
將bare 庫移動到git伺服器目錄 cp alsa-lib.git /home/repo 注意變更所有者,以獲取提交許可權。 chown -R git alsa-lib.git 然後就O 了,呵呵.

配置gitweb

1. 安裝gitweb  

sudo apt-get install gitweb

2. 安裝apache2

  sudo apt-get install apache2

3. 配置gitweb 
(1)預設沒有 css 載入,把 gitweb 要用的靜態檔案連線到 DocumentRoot 下:   cd /var/ www/    sudo ln -s / usr/ share/ gitweb/* .

   (注意後面的點)

(2)修改配置:

sudo vi /etc/ gitweb.conf

   將 $projectroot 改為gitosis-admin.git所在目錄: /home/git/repositories

 (3)修改 /home/git/repositories許可權,預設情況下,gitosis將 repositories許可權設定為不可讀的

    sudo chmod 777 -R /home/git/repositories

11.編輯apache2配置檔案,建立web站點 (預設情況下可以忽略此步驟)

(1) 編輯apache2配置檔案

    ubuntu中預設的web目錄是/var/www,預設的cgi目錄是 /usr/lib/cgi-bin/,安裝完成gitweb後,gitweb的gitweb.cgi會自動放置

到該目錄下。如果你的cgi路徑不是預設的/usr/lib/cgi-bin/,需要將gitweb安裝在/usr/lib/cgi-bin中的gitweb.cgi複製到原來配置

的cgi-bin路徑,並修改apache的配置檔案/etc/apache2/apache.conf:

    SetEnv  GITWEB_CONFIG   /etc/gitweb.conf
    gitweb.conf配置檔案形如:(可自行修改,這裡不做詳細介紹)
<Directory "/srv/www/cgi-bin/gitweb">           
      Options FollowSymlinks ExecCGI          
      Allow from all                          
      AllowOverride all                       
      Order allow,deny                        

      <Files gitweb.cgi>
           SetHandler cgi-script
      </Files>                    
      RewriteEngine on
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule ^.* /gitweb.cgi/$0 [L,PT]
</Directory>

<以下未經測試>

配 置web訪問方式: Apache常用命令:
a2dissite gitserver 禁用
a2ensite gitserver  使能
/etc/init.d/apache2 restart 重啟
1.apt-get install apache2 2.手動安 裝gitweb
git clone git://git.kernel.org/pub/scm/git/git.git
cd git
make GITWEB_PROJECTROOT=”/home/repo” prefix=/usr gitweb/gitweb.cgi
cd gitweb
cp -av git* /home/repo/
3.vim /etc/apache2/sites-available/gitserver
<VirtualHost 172.20.146.39:80>
ServerName 172.20.146.39
DocumentRoot /home/repo
ScriptAlias /cgi-bin/ /home/repo
<Directory /home/repo>
Options ExecCGI +FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride All
order allow,deny
Allow from all
AddHandler cgi-script cgi
DirectoryIndex gitweb.cgi
</Directory>
</VirtualHost>
4.賦予許可權,很重要: chgrp -R www-data /home/repo
chmod a+r repo
chmod a+x repo
mv hooks/post-update.sample hooks/post-update 5.a2ensite gitserver
6./etc/init.d/apache2 restart
遇到的問題:
1.windows檔案命名不區分大小 寫,而linux支援。這樣android原始碼下載時會出現一下問題。大約有15個檔案存在這個問題。
2.庫的描述檔案在.git資料夾的description檔案中。編輯該檔案,在gitweb頁中就會有 description。
3.gitosis庫hooks下的post- update不是由post-update.sample重新命名過來的,它們不一樣。post-update可以更新工作目錄,保持與庫一致。沒有它配置 檔案是不會更新的。
4.(1)[email protected]:/home/git$ git add .
error: readlink(“external/openssl/apps/md4.c”): No such file or directory
error: unable to index file external/openssl/apps/md4.c
fatal: adding files failed
(2)[email protected]/external/openssl# git init
Initialized empty Git repository in /external/openssl/.git/
[email protected]/external/openssl # git add .
error: readlink(“apps/md4.c”): No such file or directory
error: unable to index file apps/md4.c
fatal: adding files failed
(3)
 [email protected]_r2$ rm -Rf .repo
[email protected]_r2 $ find . -name “.git” | xargs rm -Rf

相關推薦

Ubuntu安裝git server

1.更新:防止安裝git依賴包時出錯 sudo apt-get update sudo apt-get upgrade 2.安裝openssh和openssh-client:安裝問題詳見我的其他部落格 3.安裝git sudo apt-get install git-cor

ubuntu安裝git安裝及使用

一、當前git已經成成為程式碼管理最受歡迎的工具之一,下面簡單說一下其使用。之前寫過一篇關於git關聯github的,可以檢視http://fuzhenwen.top:8000/article/22/preview 。    一般專案開發者,首先得把專案fork到自己的pro

Ubuntu 安裝 OpenSSH Server

Ubuntu 下安裝 OpenSSH Server 是無比輕鬆的一件事情,需要的命令只有一條:   sudo apt-get install openssh-server (檢視返回的結果,如果沒有出錯,則用putty、SecureCRT、SSH Secure Shell

Ubuntu安裝VNC server & 【VNC】修改VNC解析度大小

儘管我們在大部分情況下用ssh登入Ubuntu伺服器就好了,但是有時候我們的程式需要在圖形介面下執行,這時我們就要用到vnc server這個軟體了。在Ubuntu下安裝vnc server很簡單的,只要下面幾步就可以了: 第一步,獲取安裝檔案 sudo apt-get install vnc4serv

解決在ubuntu安裝git出現Unable to lock the administration directory (/var/lib/dpkg/)的問題

在ubuntu16.04下安裝git,出現以下問題: E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily

Ubuntu安裝TURN Server (rfc5766-turn-server)

在使用WebRTC進行即時通訊時,需要使瀏覽器進行P2P通訊,但是由於NAT環境的複雜性,並不是所有情況下都能進行P2P,這時需要TURN Server來幫助客戶端之間轉發資料。rfc5766-turn-server是一個高效能的開源TURN Server實現。 以下是

Git使用:Linux(Ubuntu 14.04 x64)安裝GIt並配置連接GitHub

成功 ger 版本 style sts via xxxxxxxx apt 安裝 github是一個非常好的網絡代碼托管倉庫,知曉許久,但是一直沒有用起來,最近才開始使用git管理自己的文檔和代碼。 Git是非常強大的版本管理工具,今天就告訴大家,如何在Linux下安裝GIt

ubuntu 安裝配置 telnet server服務

下面我們來對Ubuntu Linux telnet的安裝和設定進行一下講解。首先我們需要載入telnet的服務,之後對於root等有關方面進行設定。   在Windows系統中,telnet的配置相對

ubuntu安裝及配置git的方法(github)

轉自:http://blog.csdn.net/tina_ttl安裝Git一個全新的ubunt系統,需要安裝Git(系統是不具有該工具的),方法如下: 在terminel中輸入如下命令:sudo apt-get install git git-core git-gui git-doc git-svn git-

ubuntu安裝phpstudy環境記錄

completed ubuntu 下載地址 計算機 下載安裝 下載一鍵安裝包下載地址:h t tp:// w w w.p h p st u dy.n et/a. php/208 .html安裝過程開啟終端更改文件權限 chmod +x phpstudy進行安裝 ./phpstudy.bin

Ubuntu安裝Maven

clas log 移動 exp .tar.gz blog opts .gz -xms 1、JDK默認已經安裝,所以不需要。 2、下載Maven wget http://apache.fayea.com/maven/maven-3/3.5.0/binaries/apa

Ubuntu安裝java環境

方法 x64 light tar zxvf inux -1 .tar.gz jdk1 1,在官網中下載 2,通過xshell將壓縮包傳到虛擬機中的 /usr/local/ 目錄下 3 cd /usr/local 4 ls tar zxvf jdk-7u79-linux

ubuntu安裝zsh + oh my zsh

ubuntu下 git .sh https default href apt-get 使用 ubuntu 1.需要zsh支持,所以安裝zsh: sudo apt-get install zsh 2.安裝oh my zsh 根據官方: $ sh -c "$(curl

ubuntu安裝jre

增加 lin ubun 解壓 href .bashrc .gz linux img jre下載地址:http://www.java.com/en/download/manual.jsp 1、將下載好的jre-7u55-linux-x64.tar.gz文件解壓縮,得到jr

ubuntu安裝owncloud提示沒有zip模塊時

all ins phpize 文件 make 編輯 ini 安裝 ubunt wget http://pecl.php.net/get/zip-1.13.5.tgztar -zvxf zip-1.13.5.tgzcd zip-1.13.5phpize ./configure

ubuntu安裝kaldi基本步驟

ins fort github get 識別 https http hive 沒有 註:最近在學習kaldi語音識別工具,在安裝過程中遇到了許多問題,為了解決問題,我把ubuntu和一些軟件裝了又卸,卸了又裝,解決了舊問題,又出現新問題,所以在此記錄,以備後需。 在一開始,

Redis(三)-Ubuntu安裝

127.0.0.1 啟動 ret class 現在 spa 系統 查看 tty Ubuntu 下安裝 在 Ubuntu 系統安裝 Redi 可以使用以下命令: $sudo apt-get update $sudo apt-get install redis-server 啟

Ubuntu安裝MySQL

topic ln -s open 發的 格式 下載頁面 解壓 不想 檢查 在Linux下安裝MySQL有三種方式:第一種以rpm的二進制文件分個安裝,第二種是自己編譯源碼後安裝,最後一種是以二進制tar.gz文件來安裝。 這三種中,由於最後一種是統一的整體文件,個人感覺最簡

Ubuntu安裝谷歌瀏覽器命令

googl 獲得 rom 谷歌瀏覽器 www -i 快捷 文章 ref 轉載:http://www.linuxidc.com/Linux/2013-10/91857.htm 對於剛剛開始使用Ubuntu並想安裝谷歌Chrome瀏覽器的新用戶來說,本文所介紹的方法是最快捷的。

Linux(Ubuntu)安裝jdk

jdk1.8 lin $path html com 配置環境變量 classpath xshel 修改 一、下載 1)可以去官網下載:http://www.oracle.com/technetwork/java/javase/downloads/ea-jsp-142245.