Centos7 搭建自己的 git 服务器并创建 git 仓库

Centos7 搭建自己的 git 服务器并创建 git 仓库
网上有很多这样的文章,今天要搭一个自己的git仓库,就记录了一下过程,供以后参考一些内容来源于网络
1、查看服务器上是否安装了git
[root@localhost ~]# rpm -aq |grep git
如果安装了可以用 rpm -e --nodeps 强制删除
2、本次安装使用yum 安装
1.[root@localhost ~]# yum install -y git
2.[root@localhost ~]# yum install -y git-daemon
3.查看一下是否安装成功
[root@localhost ~]# git --version
git version 1.8.3.1
3、 服务器端创建 git 用户,用来管理 Git 服务,并为 git 用户设置密码
[root@localhost ~]# id git
id: git: no such user
[root@localhost ~]# useradd git
[root@localhost ~]# passwd git
Changing password for user git.
New password:
BAD PASSWORD: The password is shorter than 8 characters
Retype new password:
passwd: all authentication tokens updated successfully.
[root@localhost ~]# id git
uid=1002(git) gid=1002(git) groups=1002(git)
[root@localhost ~]#
4、在服务器端创建 Git 仓库并初始化
1.设置 /home/git/data/repo 为git仓库
[root@localhost ~]# mkdir -p /home/git/data/repo
[root@localhost repo]# cd /home/git/data/repo
[root@localhost repo]# git --bare init
2.然后把 Git 仓库的 owner 修改为 git
[root@localhost ~]# chown -R git:git /home/git/data
3.修改仓库的 mod 权限
chmod -R 775 /home/git/data
5、本地机客户端
Administrator@SC-202101271001 MINGW64 /d
$ mkdir repo
Administrator@SC-202101271001 MINGW64 /d (master)
$ cd repo
Administrator@SC-202101271001 MINGW64 /d/repo (master)
$ git init
Initialized empty Git repository in D:/repo/.git/
配置账号邮箱
git config --global user.name “Administrator”
git config --global user.email “[email protected]
连接远程仓库
git remote add origin ssh://192.168.110.98/home/git/data/repo.git/repo

你可能感兴趣的:(git,svn,运维)