一)创建用户
![](https://box.kancloud.cn/a4fb0061606cf8b6bd1dfd278532a88f_1214x470.png)
![](https://box.kancloud.cn/5c302bd25def8297e994cd5b709cb78e_1117x539.png)
创建组
![](https://box.kancloud.cn/cf467f1a2dc21b152a15e0f920a67f47_1163x441.png)
将用户加入到组
![](https://box.kancloud.cn/a2c0e247120882435a76cfbbcc538d20_1179x649.png)
二)创建项目
![](https://box.kancloud.cn/21f1563979651a1212a359839f78d99b_1093x313.png)
![](https://box.kancloud.cn/94c1247038be64d3a80a1677e6bba776_1221x617.png)
客户端测试
[root@static ~]# yum -y install git
[root@static ~]# ssh-keygen -t rsa
[root@static ~]# cat .ssh/id_rsa.pub
然后把公钥放到gogs服务器上
![](https://box.kancloud.cn/4ea4fbdced460a993f73ff2611e89d5e_1207x647.png)![]
[root@static ~]# git clone git@git.91als.net:administrator/New_Pet.git
Initialized empty Git repository in /root/New_Pet/.git/
The authenticity of host 'git.91als.net (10.2.11.204)' can't be established.
RSA key fingerprint is 5f:86:d1:ad:c5:07:a0:2a:80:f9:98:d3:05:a2:04:9f.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'git.91als.net,10.2.11.204' (RSA) to the list of known hosts.
warning: You appear to have cloned an empty repository.
[root@static ~]# ll New_Pet/
[root@static New_Pet]# git config --global user.name "xionghaihua"
[root@static New_Pet]# git config --global user.email "xionghaihua@91als.com.cn"
[root@static New_Pet]# touch README
[root@static New_Pet]# git add .
[root@static New_Pet]# git commit . -m "add README"
[root@static New_Pet]# git remote add origin git@git.91als.net:administrator/New_Pet.git
[root@static New_Pet]# git push -u origin master
Counting objects: 3, done.
Writing objects: 100% (3/3), 208 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
To git@git.91als.net:administrator/New_Pet.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.
- 第一部分:Git的基本操作
- 第一章:git软件的安装
- 第一节:在centos6.8上安装git-2.3
- 第二节:在windows上安装git-bash和TortoiseGit软件
- 第二章: Git的基本概念
- 第一节:git的基本操作
- 第二节:git的深入理解(内部运行机制)
- 第三章:git的文件管理
- 第一节:文件的添加及提交
- 第二节:文件的删除、回退等
- 第三节:忽略指定格式的文件
- 第四节:撤销本地仓库的修改
- 第四章:git的commit对象深入理解
- 第一节:查看提交历史(git log)
- 第二节:提交查找(git grep)
- 第三节:git版本库回退
- 第五章: Git分支管理
- 第一节:分支的概念及基本使用
- 第二节:Git分支管理策略
- 第三节:Git分支合并
- 第四节:推送本地分支到远程分支
- 第七章: Git常用命令详解
- 第一节:git fetch命令
- 第二节:git pull命令
- 第三节:git push命令
- 第四节: git merge命令
- 第五节:git rebase命令
- 第八章:远程仓库管理
- 第二部分: gitlab版本控制系统
- 第一节:"远程仓库”版本回退解决方案
- 第二节:远程分支和本地分支
- 第九章:Git冲突解决
- 第十章:客户端操作
- 第十章:git常规操作
- 第一章:安装gitlab服务器
- 第一节:在centos系统上安装
- 第二章:配置GitLab服务器
- 第一节:关闭gitlab注册功能
- 第二节:在gitlab上创建项目、组、用户
- 第三节:汉化gitlab
- 第四节:gitlab配置邮箱通知
- 第五节:gitlab配置https访问
- 第三章:使用过程常见的故障
- 第三部分: gogs版本控制系统
- 第一章:在centos6上基于二进制包安装gogs软件
- 第二章:gogs服务器的配置
- 第一节:gogs服务器上创建项目、用户
- 第二节:nginx反代gogs,通过https
- 第三节:gogs启动脚本
- 第四节:git保存密码到本地
- 第三章:gogs服务器的备份和恢复
- 第一节:gogs备份操作