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 git@192.168.1.100:/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/

Linux Ubuntu搭建git服务器的更多相关文章

  1. 【转】在Linux下搭建Git服务器

    在 Linux 下搭建 Git 服务器 环境: 服务器 CentOS6.6 + git(version 1.7.1)客户端 Windows10 + git(version 2.8.4.windows. ...

  2. Git版本控制之ubuntu搭建Git服务器

    Git是一个开源的分布式版本控制系统,可以有效.高效的处理从很小到非常大的项目版本管理.使得开发者可以通过克隆(git clone),在本地机器上拷贝一个完整的Git仓库,也可以将代码提交到Git服务 ...

  3. Windows/Linux 环境搭建Git服务器 + vs2012集成git

    1. 下载.安装Git 我的系统是Windows 7,需要安装Git for Windows. 下载地址: http://code.google.com/p/msysgit/downloads/lis ...

  4. 在linux中搭建git服务器

    个人觉得, 以下搭建git服务器的过程就像是在linux增加了一个用户, 而这个用户的登录shell是 git-shell, 太刨根问底的东西我也说不清楚, 还是看下面的过程吧. 过程参考了网上的文章 ...

  5. 在Linux下搭建Git服务器的方法是什么样?

    第一步 安装git:可以通过命令的方式快速安装,不同的linux的安装方法可能不一样,我的是采用的yum方法.ubuntu可以用apt-get命令.sudo yum install git 第二步 添 ...

  6. 在 Linux 下搭建 Git 服务器

    环境: 服务器 CentOS6.6 + git(version 1.7.1)客户端 Windows10 + git(version 2.8.4.windows.1) ① 安装 Git Linux 做为 ...

  7. linux 简单搭建git服务器

    如果使用git的人数较少,可以使用下面的步骤快速部署一个git服务器环境. 1. 生成 SSH 公钥 每个需要使用git服务器的工程师,自己需要生成一个ssh公钥进入自己的~/.ssh目录,看有没有用 ...

  8. 在 Linux 下搭建 Git 服务器(yum安装)

    服务端(linux): 1. 安装git [root@localhost ~]# yum -y install git 2. 增加一个git账户 为了管理的方便,在linux下面增添一个 " ...

  9. 在Linux下搭建Git服务器步骤

    环境: 服务器 CentOS6.6 + git(version 1.7.1) 客户端 Windows10 + git(version 2.8.4.windows.1)  ① 安装 Git Linux ...

随机推荐

  1. HighCharts之2D柱状图

    1.HighCharts之2D柱状图源码 column.html: <!DOCTYPE html> <html> <head> <meta charset=& ...

  2. Atiti.ui原理与gui理论

    Atiti.ui原理与gui理论 1. 概论2 2. ui的类型2 2.1. RMGUI vs IMGUI2 2.2. Cli2 2.3. Gui2 2.4. Nui natural user int ...

  3. atitit. access token是什么??微信平台公众号开发access_token and Web session保持状态机制

    atitit. access token是什么??微信平台公众号开发access_token and Web session保持状态机制 1. token机制and  session保持状态机制 1 ...

  4. Leetcode 283 Move Zeroes 字符串

    class Solution { public: void moveZeroes(vector<int>& nums) { ; ; i< nums.size(); ++i){ ...

  5. FTP基础知识 FTP port(主动模式) pasv(被动模式) 及如何映射FTP

    您是否正准备搭建自己的FTP网站?您知道FTP协议的工作机制吗?您知道什么是PORT方式?什么是PASV方式吗?如果您不知道,或没有完全掌握,请您坐下来,花一点点时间,细心读完这篇文章.所谓磨刀不误砍 ...

  6. 我所理解的JavaScript闭包

    目录 一.闭包(Closure) 1.1.什么是闭包? 1.2.为什么要用闭包(作用)? 1.2.1.保护函数内的变量安全. 1.2.2.通过访问外部变量,一个闭包可以暂时保存这些变量的上下文环境,当 ...

  7. 使用HTML5的File实现base64和图片的互转

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  8. Android调用浏览器打开网址遇到的问题

    我自己的手机(一加一代,升级了氢OS),然后在点击游戏内一个"隐私政策"-- 需要打开一个网页,然后就crash了.出错的信息如下: 完全是看不出来,然后我单独写了一个demo来测 ...

  9. Swift入门篇-集合

    一:数组 一:可变数组 定义:数组使用有序列表存储相同类型的多重数据. 格式: 第一种格式 var 变量: 类型[] = [变量值,变量值,...] 第二种格式 var 变量 =[变量值,变量值,.. ...

  10. Unity3D Shader入门指南(一)

    动机 自己使用Unity3D也有一段时间了,但是很多时候是流于表面,更多地是把这个引擎简单地用作脚本控制,而对更深入一些的层次几乎没有了解.虽然说Unity引擎设计的初衷就是创建简单的不需要开发者操心 ...