ubuntu下面的git服务器搭建

1、安装相应的软件和依赖


ubuntu:~$ sudo apt-get install git-core openssh-server openssh-client
git-core是git版本控制核心软件安装openssh-server和openssh-client是由于git需要通过ssh协议来在服务器与客户端之间传输文件然后中间有个确认操作,输入Y后等待系统自动从镜像服务器中下载软件安装,安装完后会回到用户当前目录。如果安装提示失败,可能是因为系统软件库的索引文件太旧了,先更新一下就可以了,更新命令如下:ubuntu:~$ sudo apt-get update更新完软件库索引后继续执行上面的安装命令即可。

2、配置服务器

在服务器端

查看ssh有没有启动

root@weiqifa-Inspiron-3847:/home/git# ps -e|grep ssh1686 ?        00:00:00 sshd
root@weiqifa-Inspiron-3847:/home/git# 

创建git用户,用来管理代码的用户

root@weiqifa-Inspiron-3847:/home/git# sudo useradd git
useradd: user 'git' already exists
root@weiqifa-Inspiron-3847:/home/git# 

秘钥文件

在gitServer上我们首先查看/home/git/.ssh目录下是否存在authorized_kesys文件,

如果没有,可以通过touch authorized_keys创建此文件。


在客户机端

在客户端用ssh-keygen -t rsa 生成秘钥

然后用命令scp把秘钥复制到服务器

scp id_rsa.pub weiqifa@192.168.0.88:/home/git/.ssh/

然后回到服务器

root@weiqifa-Inspiron-3847:/home/git/.ssh# ls
authorized_keys  id_rsa.pub
root@weiqifa-Inspiron-3847:/home/git/.ssh# cat id_rsa.pub >> authorized_keys 
root@weiqifa-Inspiron-3847:/home/git/.ssh# cat authorized_keys 
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDkIt2Hh532FoWoj0IUztIYF+jz4F1KvyOAmrhpxUMnnuj+YEOhyw6AGL/NAjmE5r8SzeJLTtAkVk9s143R9tYouPOgHPuwTTFvDy/skjD14yMne1aHzre2rM0jGiv5gtZDmi523FvQob7oTM5xOKKk3lsMBQNPdWrPPWqs8kS941sdWYymNQqFLBH4DpzDUAS+Itk5U6aNvVcQbldmGR+F3IxIKxH76HwpTmh+Os5fqraQLOMpWZzu8h0KMMMnNdideV0lHfq40Swb0ZO6ZGy/tdXBTc7oO8bn11oRVQ+Uf+USYMBzB6PCe6gODI3Fp0cBFzzQNque6MIAh6ELClUn Administrator@JU674J315CAOGPV
root@weiqifa-Inspiron-3847:/home/git/.ssh# 


3、建立仓库并克隆
建立个文件夹用来管理仓库

root@weiqifa-Inspiron-3847:/home/git# mkdir repo
root@weiqifa-Inspiron-3847:/home/git# chown -R git:git repo/
root@weiqifa-Inspiron-3847:/home/git# chmod 700 repo/
root@weiqifa-Inspiron-3847:/home/git# 

在服务器测试clone一下

root@weiqifa-Inspiron-3847:/home/git# cd repo/
root@weiqifa-Inspiron-3847:/home/git/repo# git init --bare sscom.git
Initialized empty Git repository in /home/git/repo/sscom.git/
root@weiqifa-Inspiron-3847:/home/git/repo# cd ../
root@weiqifa-Inspiron-3847:/home/git# ls
bin  examples.desktop  gitosis  id_rsa.pub  repo
root@weiqifa-Inspiron-3847:/home/git# cd ../
root@weiqifa-Inspiron-3847:/home# git clone --bare git
git/           gitrepository/ 
root@weiqifa-Inspiron-3847:/home# git clone --bare git/repo/sscom.git/
Cloning into bare repository 'sscom.git'...
warning: You appear to have cloned an empty repository.
done.
root@weiqifa-Inspiron-3847:/home# ls
git  gitrepository  lost+found  sscom.git  weiqifa
root@weiqifa-Inspiron-3847:/home# 



在客户端clone一下

Administrator@JU674J315CAOGPV MINGW64 ~/.ssh
$ git clone git@192.168.0.88:/home/git/repo/sscom.git
Cloning into 'sscom'...
git@192.168.0.88's password:
warning: You appear to have cloned an empty repository.
Checking connectivity... done.

在客户端push 一下

Administrator@JU674J315CAOGPV MINGW64 ~/.ssh
$ git clone git@192.168.0.88:/home/git/repo/sscom.git
Cloning into 'sscom'...
git@192.168.0.88's password:
warning: You appear to have cloned an empty repository.
Checking connectivity... done.Administrator@JU674J315CAOGPV MINGW64 ~/.ssh
$ ls
id_rsa  id_rsa.pub  known_hosts  sample/  sscom/Administrator@JU674J315CAOGPV MINGW64 ~/.ssh
$ cd sscom/Administrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ ^CAdministrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ lsAdministrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ pwd
/c/Users/Administrator/.ssh/sscomAdministrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ git branchAdministrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ echo "this beginnings of project1" > any.fileAdministrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ git add .
warning: LF will be replaced by CRLF in any.file.
The file will have its original line endings in your working directory.Administrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ git commit -m "init"
[master (root-commit) e9565b2] init
warning: LF will be replaced by CRLF in any.file.
The file will have its original line endings in your working directory.1 file changed, 1 insertion(+)create mode 100644 any.fileAdministrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ git push origin master
git@192.168.0.88's password:
Counting objects: 3, done.
Writing objects: 100% (3/3), 229 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: error: insufficient permission for adding an object to repository database ./objects
remote: fatal: failed to write object
error: unpack failed: unpack-objects abnormal exit
To git@192.168.0.88:/home/git/repo/sscom.git! [remote rejected] master -> master (unpacker error)
error: failed to push some refs to 'git@192.168.0.88:/home/git/repo/sscom.git'

这个错误查看了一下这个链接

http://blog.csdn.net/yujunf/article/details/7595231

在服务器然后再修改一下

root@weiqifa-Inspiron-3847:/home/git/repo# ls
sscom.git
root@weiqifa-Inspiron-3847:/home/git/repo# chown -R git:git sscom.git/
root@weiqifa-Inspiron-3847:/home/git/repo# 

回到客户端再push一下

Administrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)
$ git push
git@192.168.0.88's password:
Counting objects: 3, done.
Writing objects: 100% (3/3), 229 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To git@192.168.0.88:/home/git/repo/sscom.git* [new branch]      master -> masterAdministrator@JU674J315CAOGPV MINGW64 ~/.ssh/sscom (master)

4、总结

1、原理问题查清楚,哪步在哪里执行,要搞清楚

2、认真仔细,ubuntu对用户权限要求比较高,要特别注意一下

3、学会在网查资料


参考资料:

http://www.linuxdiyf.com/linux/12685.html

https://hacpai.com/article/1445337139234

http://www.linuxdiyf.com/linux/12159.html

http://www.linuxdiyf.com/linux/10730.html

http://www.gitguys.com/topics/creating-a-shared-repository-users-sharing-the-repository/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/469191.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

实验四:使用库函数API和C代码中嵌入汇编代码两种方式使用同一个系统调用

王康 原创作品转载请注明出处 《Linux内核分析》MOOC课程http://mooc.study.163.com/course/USTC-1000029000 系统调用:操作系统中,程序员通过封装好的库函数来实现系统调用 前提 1,用户态内核态中断: 1,用户态内核…

【Pytorch神经网络理论篇】 37 常用文本处理工具:spaCy库+torchtext库

同学你好!本文章于2021年末编写,获得广泛的好评! 故在2022年末对本系列进行填充与更新,欢迎大家订阅最新的专栏,获取基于Pytorch1.10版本的理论代码(2023版)实现, Pytorch深度学习理论篇(2023版)目录地址…

海龟画图 python太阳花_python 简单的绘图工具turtle使用详解

目录 1. 画布(canvas) 1.1 设置画布大小 2. 画笔 2.1 画笔的状态 2.2 画笔的属性 2.3 绘图命令 3. 命令详解 4. 绘图举例 4.1 太阳花 4.2 绘制小蟒蛇 4.3 绘制五角星 python2.6版本中后引入的一个简单的绘图工具,叫做海龟绘图(Turtle Graphics),turtle库是python的内…

RK平台ubuntu安装vbox

1、安装ubuntu14.04 2、在ubuntu下添加权限,根据lsusb出来的 vid pid来添加 3、安装vbox 不是最高版本越好。 4、安装xp, 5、在xp里面安装RK驱动 6、试着用RK的工具连接进入烧录模式的板子,如果连接不上修改vbox的usb,确保是usb2.0

【Pytorch神经网络实战案例】31 TextCNN模型分析IMDB数据集评论的积极与消极

卷积神经网络不仅在图像视觉领域有很好的效果,而且在基于文本的NLP领域也有很好的效果。TextCN如模型是卷积神经网络用于文本处理方面的一个模型。 在TextCNN模型中,通过多分支卷积技术实现对文本的分类功能。 1 TextCNN 1.1 TextCNN模型结构 TexCNN…

rk3188开机失败(ump_file_open() 251)

刚开始配置rk3188板子的时候&#xff0c; 基本配置&#xff0c;RK3188 RK616 ACT8846 8G的flash, 开机的时候提示如下&#xff1a; <6>[ 18.729270] request_suspend_state: wakeup (0->0) at 18680347129 (1970-01-01 00:00:18.671397630 UTC) <4>[ 23.8…

python怎么画出好看的统计图_用最简单的 Python ,画最好看的图 [简单数据可视化]...

可以直接修改参数使用&#xff0c;非常的方便。import numpy as np import pandas as pd import holoviews as hv hv.extension(bokeh) macro_df pd.read_csv(http://assets.holoviews.org/macro.csv, \t) key_dimensions [(year, Year), (country, Country)] value_dimensio…

project ‘org.springframework.boot:spring-boot-starter-parent:2.1.4.RELEASE‘ not found

复制别人的的依赖&#xff0c;在parent里面版本号爆红&#xff0c;解决方案&#xff1a; 在左上方file里找到nvalidate Caches/Restart&#xff0c;清理一下idea缓存&#xff0c;重启idea以后不会爆红了

combobox之下拉宽度自适应

效果对比 先看下优化前后的效果&#xff0c;再看实现过程. 优化前 优化后 从上图中可看到&#xff0c;combobox优化后可以自适应不同长度的字符串&#xff0c;保证每个字符串都能够显示完整。 实现过程 当我们触发CBN_DROPDOWN事件时&#xff0c;不再使用默认的实现&#xff0c…

android studio入门

1、首先要安装好java jdk&#xff0c;然后再设置好环境变量 2、下载android studio 这个可以从百度上下载 3、导入Android studio工程&#xff0c;注意&#xff0c;是导入而不是打开。这时候Android studio会帮你自己建立一些连接。

Python工具:将文件夹下的视频按照帧数输出图片文件(含代码)

1、描述 将一个视频流按帧数截取大量的图片 2、用途 AI的数据集制作&#xff0c;得到大量的图片&#xff0c;之后将其打标签 3、案例文件截图 4、代码实现&#xff1a; import cv2 import argparse import os# 边里该文件夹下的文件名称 def read_directory(directory_nam…

python模块讲解_python模块详解

使用python时&#xff0c;常常会涉及到库的调用&#xff0c;这就需要掌握模块的基本知识。 本文分为如下几个部分概念说明 模块的简单调用 包的导入 特殊的__init__.py文件 导入模块的搜索路径 __all__ 绝对引用与相对引用 import运行本质 if __name__ __main__ 概念说明 这里…

QT常用问题

Int 装QString QString::number(changInt, 10) QString 转 QByteArray QByteArray macValueui->lineEdit->text().mid(4,8).toLatin1(); 把QByteArray转成QString QString s; s.prepend(postData); ui->textBrowser->append(s); 获取系统时间 QDateTime time QD…

用Python语言对任意图像进行m*n的均匀分块(思路非常清晰,步骤简单)

主要用途&#xff1a;处理图片数据集 1 对单个图片进行分块 import numpy as np import matplotlib.pyplot as plt import cv2def divide_method1(img,m,n):#分割成m行n列print(img.shape)h, w img.shape[0],img.shape[1]gx np.round(h).astype(np.int)gy np.round(w).asty…

17.3.12---urlparse模块的URL下载

1---urlparse模块是一个解析与泛解析Web网址URL字符串的一个工具 urlparse模块会将一个普通的url解析为6个部分&#xff0c;返回的数据类型都是元祖&#xff0c;同时&#xff0c;他还可以将已经分解后的url在组合成url地址 返回六个部分&#xff0c;分别是&#xff1a;scheme&a…

C语言变量和函数命名规范

C 语言变量和函数命名规范: 关于C语言变量和函数命名规范 据考察&#xff0c;没有一种命名规则可以让所有的程序员赞同&#xff0c;程序设计教科书一般都不指定命名规则。命名规则对软件产品而言并不是“成败悠关”的事&#xff0c;我们不要化太多 精力试图发明世界上最好的命据…

python爬虫用什么软件写_python爬虫怎么写

如今很多有编程能力的小伙伴已经不满足手动搜索内容了&#xff0c;都希望通过编写爬虫软件来快速获取需要的内容&#xff0c;那么如何使用python制作爬虫呢&#xff1f;下面小编给大家讲解一下思路 工具/原料 python 方法/步骤 1 首先我们需要确定要爬取的目标页面内容&#xf…

花书《深度学习》代码实现:01 线性代数:基本概念+代码实现基本运算

1 标量、向量、矩阵和张量 2 矩阵和向量相乘 3 单位矩阵和逆矩阵 3.0 单位矩阵 a np.identity(3) # 三行三列单位矩阵 3.1 矩阵的逆 A [[1.0,2.0],[3.0,4.0]] A_inv np.linalg.inv(A) print("A 的逆矩阵", A_inv) 3.1 转置 A np.array([[1.0,2.0],[1.0,0…

【Pytorch神经网络理论篇】 38 Transformers:安装说明+应用结构+AutoModel类

同学你好&#xff01;本文章于2021年末编写&#xff0c;获得广泛的好评&#xff01; 故在2022年末对本系列进行填充与更新&#xff0c;欢迎大家订阅最新的专栏&#xff0c;获取基于Pytorch1.10版本的理论代码(2023版)实现&#xff0c; Pytorch深度学习理论篇(2023版)目录地址…

python微信自动发消息_如何利用python3实现微信定时自动发消息和图片?

python代码&#xff1a; import itchat import time itchat.auto_login(hotReloadTrue) AutoList ["",""]#需要发送消息的好友,可以不止一个 message ""#需要发送的消息 path ""#需要发送图片的位置 while True: time_now time.st…