Linux Ubuntu搭建git伺服器

来源:http://www.cnblogs.com/a284628487/archive/2016/01/04/3729246.html
-Advertisement-
Play Games

1. 安裝 openssh-server ,用於創建SSH服務。sudo apt-get install openssl-server使用命令ps -e|grep ssh,查看ssh服務是否啟動。如果正常啟動,則會顯示類似信息:1966 ? 00:00:00 ssh-agent2. 創建用戶名為g....


1. 安裝 openssh-server ,用於創建SSH服務。

sudo apt-get install openssl-server

使用命令ps -e|grep ssh,查看ssh服務是否啟動。

如果正常啟動,則會顯示類似信息:1966 ?    00:00:00 ssh-agent 

2. 創建用戶名為git的用戶,用來管理和運行git服務。

sudo user del -r git // 刪除已經存在的叫git的用戶;
sudo adducer git // 添加用戶名叫git的用戶;

進入git用戶目錄下,創建目錄.ssh,然後在.ssh目錄下創建名為authorized_keys的文件;

cd /home/git
sudo mkdir .ssh
cd .ssh
touch authorized_keys

將客戶端的公鑰(生成方法見後文)拷貝到authorized_keys文件中;

cat path/id_rsa.pub >> /home/git/.ssh/authorized_keys

安裝 git-core

sudo apt-get install git-core

3. 初始化服務端倉庫

git —bare init /home/git/test1.git

註:該命令會生成一個空倉庫,此時test1.git對應的地址則為git@hostIp:/home/git/test1.git

或者:

mkdir test1.git
cd test1.git
git —bare init

 

4. 客戶端運行ssh-keygen -t rsa生成密鑰;

生成密鑰後,在.ssh目錄下,會有兩個文件id_rsa和id_rsa.pub文件,id_rsa.pub為公鑰,通過命令scp /home/git/.ssh/id_rsa.pub gitServer:/home/git將client上生成的公鑰拷貝到gitServer上;

服務端把公鑰添加到authorized_keys文件中後,客戶端就能通過路徑訪問到git倉庫了;

生成密鑰時,會要求你確認保存公鑰的位置(預設為~/.ssh/id_rsa),然後會讓重覆一個密碼兩次,如果不想在使用公鑰的時候輸入密碼,則留空;

假定hostIp為192.168.1.100

git clone [email protected]:/home/git/test1.git

 

5. 常用git命令

>1. git clone

  語法:git clone 版本庫網址 本地庫名稱(可省略)

>2. git remote

  此命令用於管理遠程主機名,在沒有參數的情況下可以列出所有主機名;

  git remote
  origin

  顯示origin是在使用clone命令,克隆遠程版本庫時git自動為遠程主機命令;

  通過git remote -v 查看版本庫的地址;

>3. git fetch

  語法:git fetch origin(git fetch origin master)

  預設情況下,git fetch origin將會更新遠程主機origin上所有分支,如果只想更新某個分支則在主機名後加分支名

>4. git push

  語法:git push 遠程主機名 本地分支名:遠程分支名

  如果省略遠程分支名,則表示將本地分支推送與存在最終關係的遠程分支,如果遠程分支不存在,則會被創建;

  git push origin master,表示將本地master分支推送到origin主機的master分支;

  如果省略本地分支名,則表示要刪除遠程主機中的分支,如git push origin : master,則表示刪除origin主機中的master分支;

>5. git pull

  語法:git pull 遠程主機 遠程分支:本地分支 如:git pull origin master:master,表示將遠程主機origin中的master分支更新到本地分支master;

 

6. 每次添加一個新項目都需要通過shell登入主機並創建一個純倉庫,我們不妨以gitServer作為git用戶和倉庫所在的主機名,如果你在網路內部運行該主機,並且在DNS中設定gitServer指向該主機,則以下這些命令都是可用的:

cd myproject
git init
git add .
git commit -m “initial commit”
git remote add origin git@gitServer:test1.git
git push origin master

創建一個版本庫倉庫

這樣,其它人的克隆和推送也一樣

git clone git@gitServer:/test1.git
vim README
git commit -am ‘fix for the README file’
git push origin master

7. 作為一個額外的防護措施,可以用git自帶的git-shell工具來把git用戶的活動限制在僅與git相關。把它設為git用戶登入的shell,那麼該用戶就不能擁有主機正常的shell訪問權,為了實現這一點,需要指明用戶的登入shell為git-shell,而不是 bash 或者 csh,可以通過編輯/etc/passwd文件

sudo vim /etc/passwd

在文件末尾,找到類似此行

git:x:1000:1000::/home/git:/bin/sh

將bin/sh改為/usr/bin/git-shell

git:x:1000:1000::/home/git:/usr/bin/git-shell

現在git用戶只能用ssh連接來推送和獲取git倉庫,而不能直接使用主機shell。

 

8. Q&A

(1)

Q:

xiongmc@xiongmc-desktop:~/myproject2$ git push origin master

Agent admitted failure to sign using the key.

git@localhost's password: 

error: src refspec master does not match any.

error: failed to push some refs to 'git@localhost:/opt/git/project.git/'

A:如果初始的代碼倉庫為空,git push origin master提交代碼的時候會出現以上異常

http://www.linuxidc.com/Linux/2013-03/81022.htm 

(2)

Q:

xiongmc@xiongmc-desktop:~/myproject2$ git push origin master

Agent admitted failure to sign using the key.

git@localhost's password: 

Permission denied, please try again.

git@localhost's password: 

Counting objects: 3, done.

Writing objects: 100% (3/3), 213 bytes, done.

Total 3 (delta 0), reused 0 (delta 0)

error: insufficient permission for adding an object to repository database ./objects

fatal: failed to write object

error: unpack failed: unpack-objects abnormal exit

To git@localhost:/opt/git/project.git/

 ! [remote rejected] master -> master (n/a (unpacker error))

error: failed to push some refs to 'git@localhost:/opt/git/project.git/'

A: 伺服器無許可權。

http://blog.sina.com.cn/s/blog_53e449530101349s.html

http://stackoverflow.com/questions/1918524/error-pushing-to-github-insufficient-permission-for-adding-an-object-to-reposi 

sudo chown -R git:gitgroup path/to/repo.git/
// or
sudo chown -R git:git path/to/repo.git/

(3)

http://www.linuxidc.com/Linux/2013-03/81022.htm

Q:

xiongmc@xiongmc-desktop:~/myproject2$ git push origin master

Agent admitted failure to sign using the key.

git@localhost's password: 

Counting objects: 3, done.

Writing objects: 100% (3/3), 213 bytes, done.

Total 3 (delta 0), reused 0 (delta 0)

remote: error: refusing to update checked out branch: refs/heads/master

remote: error: By default, updating the current branch in a non-bare repository

remote: error: is denied, because it will make the index and work tree inconsistent

remote: error: with what you pushed, and will require 'git reset --hard' to match

remote: error: the work tree to HEAD.

remote: error: 

remote: error: You can set 'receive.denyCurrentBranch' configuration variable to

remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into

remote: error: its current branch; however, this is not recommended unless you

remote: error: arranged to update its work tree to match what you pushed in some

remote: error: other way.

remote: error: 

remote: error: To squelch this message and still keep the default behaviour, set

remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.

To git@localhost:/opt/git/project.git/

 ! [remote rejected] master -> master (branch is currently checked out)

error: failed to push some refs to 'git@localhost:/opt/git/project.git/'

A:

$cd .git

$vim config

該配置文件的原始內容為:

[core]

        repositoryformatversion = 0

        filemode = true

        bare = false

        logallrefupdates = true

在該配置文件中加入以下內容:

[receive]

denyCurrentBranch = ignore

(4)

Linux伺服器:Ubuntu配置git服務 - 逸雲沙鷗

http://www.xue5.com/Server/Linux/667461.html

(5)為了集成到SCM,我們在Linxu上安裝GIT

http://www.examw.com/linux/all/182529/index-2.html

LINUX上創建GIT伺服器

http://lionest.iteye.com/blog/1447310

http://blog.csdn.net/andy_android/article/details/6996134

Receiving objects:  26% (5668/21560), 8.06 MiB | 183 KiB/s      21560)   

(6)

Q:

xiongmc@xiongmc-desktop:~/myproject.git$ git push origin master ssh: connect to host xiongmc-desktop port 22: Connection refused

fatal: The remote end hung up unexpectedly

xiongmc@xiongmc-desktop:~/myproject.git$ git push origin master 

ssh: connect to host xiongmc-desktop port 22: Connection refused

fatal: The remote end hung up unexpectedly

A:

http://blog.csdn.net/zlm_250/article/details/7979221

sudo apt-get install openssh-server

sudo net start sshd  

sudo ufw disable 

ssh localhost  

(7)

Q:

ubuntu系統下關於'xx'用戶不在 sudoers文件中,此事將被報告。的解決方法 

A:

http://blog.sina.com.cn/s/blog_bede36550101b0av.html

git ALL=(ALL:ALL) ALL 

(8)

Q:

xiongmc@xiongmc-desktop:~/myproject.git$ git push origin master 

git@xiongmc-desktop's password: 

fatal: '/opt/git/project.git' does not appear to be a git repository

fatal: The remote end hung up unexpectedly

A:

http://www.dotkam.com/2010/08/22/gitolite-does-not-appear-to-be-a-git-repository/

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • weiphp後臺使用設置實現在用戶授權時候顯示公眾號的名字以及分享使用該服務號使用步驟1:在weiphp後臺打開公眾號管理-新增2:輸入公眾號名字,原始ID,微信號3:在這裡公眾號能查找到4: 輸入完成之後下一步,他會提供URL和token令牌.然後就要在微信公眾號後臺配置6輸入完成之後我,記錄下k...
  • Openfire和Strophejs網站功能變數名稱不同如何進行通信,這個問題總算解決,下麵是解決步驟。解決方案一:Chrome瀏覽器預設支持跨域訪問IE瀏覽器需要做配置:點擊IE瀏覽器的的“工具->Internet 選項->安全->自定義級別”將“其他”選項中的“通過域訪問數據源”選中為“啟用”或者“提示...
  • 題目:A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message ...
  • 1、什麼是 nutchNutch 是一個開源的、 Java 實現的搜索引擎。它提供了我們運行自己的搜 索引擎所需的全部工具。2、研究 nutch 的原因(1) 透明度: nutch 是開放源代碼的,因此任何人都可以查看他的排序演算法是如何工作的。商業的搜索引擎排序演算法都是保密的,我們無法知道為 什麼搜...
  • 與 WebServices 相關的 J2EE 技術稱為 JWS(Java WebServices),其中含有 JAX-WS、JAX-RS、JAXB、JAXR、SAAJ、StAX 等技術支持 SOAP 的是 JAX-WS,即 JSR 224,http://jcp.org/en/jsr/detail?i...
  • 面向對象與面向過程:首先我們要明確一定:無論是面向對象還是面向過程他們都是解決同一個問題,只是方式不同而已。1.面向過程將程式看作一系列函數的集合,而面向對象將程式看作一種在程式中包含各種獨立而又互相調用的對象的集合。2.面向過程就是分析出解決問題所需的步驟,面向對象則是把問題中存在關鍵的事物抽取....
  • 1.程式執行結果:崩潰class A{ int i;};class B{ A *p;public: B(){p=new A;} ~B(){delete p;}};void sayHello(B b){}int main(){ B b; sayHello(b);}原因:調用sa...
  • 創建數組 下麵這幾種方式都可以創建一個數組1 int[] a;2 int[] b = new int[5];3 String c[] = new String[] { "Hello", "World" };4 double [] d ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...