溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Git服務(wù)器的Gitosis安裝配置以及gitignore的使用方法

發(fā)布時間:2021-08-04 21:26:32 來源:億速云 閱讀:113 作者:chen 欄目:系統(tǒng)運維

這篇文章主要介紹“Git服務(wù)器的Gitosis安裝配置以及gitignore的使用方法”,在日常操作中,相信很多人在Git服務(wù)器的Gitosis安裝配置以及gitignore的使用方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Git服務(wù)器的Gitosis安裝配置以及gitignore的使用方法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

Git服務(wù)器Gitosis安裝設(shè)置

1、安裝 openssh服務(wù)器

代碼如下:


sudo apt-get install openssh-server openssh-client


2、創(chuàng)建個人公鑰和私鑰

在默認用戶的主目錄路徑下,運行以下命令,按照提示創(chuàng)建公鑰和私鑰

代碼如下:


ssh-keygen -t rsa


默認生成2048位,如果需要提高安全級別,也可以通過下面的命令創(chuàng)建公鑰和私鑰

代碼如下:


ssh-keygen -t rsa -b 4096


默認情況下,公鑰和私鑰會保存在~/.ssh目錄下,如下所示:

代碼如下:


id_rsa  id_rsa.pub  known_hosts


3、安裝 git服務(wù)器

代碼如下:


sudo apt-get install git-core


4、配置 git服務(wù)器

創(chuàng)建git服務(wù)器管理用戶

代碼如下:


sudo useradd -m git
sudo passwd git


創(chuàng)建git倉庫存儲目錄

代碼如下:


sudo mkdir /home/git/repositories


設(shè)置git倉庫權(quán)限

代碼如下:


sudo chown git:git /home/git/repositories
sudo chmod 755 /home/git/repositories


初始化全局設(shè)置

代碼如下:


git config --global user.name "myname"
git config --global user.email "myname@server"


5、安裝python的setup tool

代碼如下:


sudo apt-get install python-setuptools


6、獲取并安裝gitosis

代碼如下:


cd /tmp
git clone https://github.com/res0nat0r/gitosis.git
cd gitosis
sudo python setup.py install


7、配置gitosis

代碼如下:


cp ~/.ssh/id_rsa.pub /tmp
sudo -H -u git gitosis-init < /tmp/id_rsa.pub
sudo chmod 755 /home/git/repositories/gitosis-admin.git/hooks/post-update


8、管理gitosis配置

代碼如下:


cd ~
git clone git@hostname:用戶名/gitosis-admin.git
cd gitosis-admin/


各個用戶按照前面提到的辦法生成各自的ssh公鑰文件后,服務(wù)器管理員把所有人的 ssh公鑰文件都拿來,拷貝到keydir目錄下。

修改gitosis.conf文件,如下所示

代碼如下:


[gitosis]
[group gitosis-admin]
writable = gitosis-admin
members = a@server1
[group developers]
writable = helloworld
members = a@server1 b@server2
[group test]
readonly = helloworld
members = c@server3


這個配置文件表達了如下含義:gitosis-admin組成員有a,該組對gitosis-admin倉庫有讀寫權(quán)限; developers組有a,b兩個成員,該組對helloworld倉庫有讀寫權(quán)限; test組有c一個成員,對helloworld倉庫有只讀權(quán)限。 當然目前這些配置文件的修改只是在你的本地,你必須推送到gitserver上才能真正生效。 加入新文件、提交并push到git服務(wù)器:

代碼如下:


git add .
git commit -am "add helloworld project and users"
git remote add origin ssh://git@hostname/helloworld.git
git push origin master


9、安裝apache2

代碼如下:


sudo apt-get install apache2


10、安裝gitweb

代碼如下:


sudo apt-get install gitweb


11、配置 gitweb

默認沒有 css 加載,把 gitweb 要用的靜態(tài)文件連接到 DocumentRoot 下:

代碼如下:


cd /var/www/
sudo ln -s /usr/share/gitweb/* .


修改配置:

代碼如下:


sudo vi /etc/gitweb.conf


將 $projectroot 改為git倉庫存儲目錄(例如:/home/git/repositories),保存后刷新瀏覽器。


如果沒有找到項目,你需要將$projectroot/*.git 的屬性改為755,讓apache用戶有可讀權(quán)限??梢灾桓哪阈枰寗e人通過web訪問的那個git。http://localhost/cgi-bin/gitweb.cgi


修改/etc/gitweb.conf 內(nèi)容:

代碼如下:


# path to git projects (<project>.git)
#$projectroot = "/var/cache/git";
$projectroot = "/home/git/repositories";
# directory to use for temp files
$git_temp = "/tmp";
# target of the home link on top of all pages
$home_link = $my_uri || "/";
# html text to include at home page
$home_text = "indextext.html";
# file with project list; by default, simply scan the projectroot dir.
$projects_list = $projectroot;
# stylesheet to use
@stylesheets = ("/gitweb/static/gitweb.css");
# javascript code for gitweb
$javascript = "gitweb/static/gitweb.js";
# logo to use
$logo = "/gitweb/static/git-logo.png";
# the 'favicon'
$favicon = "/gitweb/static/git-favicon.png";
# git-diff-tree(1) options to use for generated patches
#@diff_opts = ("-M");
@diff_opts = ();


12、配置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復(fù)制到原來配置的cgi-bin路徑,并在apache的配置文件/etc/apache2/apache.conf末尾加上以下內(nèi)容:

代碼如下:


SetEnv  GITWEB_CONFIG   /etc/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>

Git使用gitignore建立項目過濾規(guī)則
在進行協(xié)作開發(fā)代碼管理的過程中,常常會遇到某些臨時文件、配置文件、或者生成文件等,這些文件由于不同的開發(fā)端會不一樣,如果使用git add . 將所有文件納入git庫中,那么會出現(xiàn)頻繁的改動和push,這樣會引起開發(fā)上的不便。

Git可以很方便的幫助我們解決這個問題,那就是建立項目文件過濾規(guī)則。

git中提供兩種過濾機制,一種是全局過濾機制,即對所有的git都適用;另一種是針對某個項目使用的過濾規(guī)則。個人傾向于第二種。


以我的一個項目為例,該項目用.net開發(fā),.config文件、包括生成的bin/Debug, bin/Release文件等,我希望不加入git管理。

在代碼目錄下建立.gitignore文件:vim .gitignore ,內(nèi)容如下:

代碼如下:


#過濾數(shù)據(jù)庫文件、sln解決方案文件、配置文件  
*.mdb  
*.ldb  
*.sln  
*.config  
 
 
#過濾文件夾Debug,Release,obj  
Debug/  
Release/  
obj/

然后調(diào)用git add. ,執(zhí)行 git commit即可。

到此,關(guān)于“Git服務(wù)器的Gitosis安裝配置以及gitignore的使用方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI