码迷,mamicode.com
首页 > 其他好文 > 详细

gitlab命令整理

时间:2019-12-20 13:45:32      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:更换   git pull   upload   ssh   代码   服务器   dir   环境   密钥   

2   Git组件安装

# yum –y install git

3   配置git仓库

  因公司环境需要,故本文档按照公司环境配置。

1、     配置访问密钥

# ssh-keygen

2、     将客户端的密钥拷贝至git服务器

# ssh-copy-id

3、     创建git仓库目录

# mkdir /data/www/repos

4、     创建git仓库

# cd /data/www/repos

# git init --bare sample.git                (一定要在预定仓库目录中执行)

5、     添加允许访问用户

# git config --global user.name "root"

4   Git客户端常用命令

1、     添加

# git add 文件

2、     删除

# git rm 文件

3、     提交修改

# git commit –m “备注信息”

4、     提交

# git push

5、     更新

# git pull

6、     克隆仓库

# git clone git访问地址及目录

7、     查看文件状态

# git status

8、     重命名文件

# git mv 文件 新文件

9、     查看log

# git log

10、    对比文件差异

# git diff

11、    克隆库

 

 

 

因生产环境有时需要,则可用以下命令克隆代码库

# git clone --bare repos

                

            查看分支

            git branch  

                更换分支

            git checkout 

技术图片

gitlab命令整理

标签:更换   git pull   upload   ssh   代码   服务器   dir   环境   密钥   

原文地址:https://www.cnblogs.com/li0920/p/12072573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!