Ubuntu 下安装GitLab服务器与简单Git操作

Ubuntu 下安装GitLab服务器。

方式1:安装命令(推荐使用):

curl -sS http://packages.gitlab.com.cn/install/gitlab-ce/script.deb.sh | sudo bash

sudo apt-get install gitlab-ce

方式2:也可以下载程序包进行安装,程序包地址:

  • 国内地址(只有*.deb程序包): https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/

  • 官方地址:https://packages.gitlab.com/gitlab/gitlab-ce

*.rmp程序包,安装命令(例如 Centos 系统):

curl -O https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-9.4.5-ce.0.el7.x86_64.rpm

sudo rpm -i gitlab-ce-9.4.5-ce.0.el7.x86_64.rpm

*.deb程序包,安装命令(例如 Ubuntu 系统):

curl-O https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/xenial/gitlab-ce_9.4.5-ce.0_amd64.deb

sudo dpkg -i gitlab-ce_9.4.5-ce.0_amd64.deb

注:在 Ubuntu 安装*.deb程序包,需要进行文件转换,比较麻烦些,而且容易失败,参考:ubuntu 安装 deb,rpm 安装包方法

关于Git的使用。(平台gitlab,github,gitoschina,以及我们私有域搭建的gitlab。均使用git)

我们的是gitlab 192.168.0.103

如需使用可询问。

相关使用教程 可见廖雪峰官网。www.liaoxuefeng.com 的Git教程。

以下是一些简单常用的命令是

傻瓜版Command line instructions

2015-12-30


Git global setup(全局设置)

git config --global user.name "ownname"
git config --global user.email "[email protected]"

Create a new repository【创建一个仓库】

git clone [email protected]:wwxXX/Hxxx.git
cd Hxxx
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Existing folder or Git repository【存在项目夹,Git仓库】

cd existing_folder
git init
git remote add origin [email protected]:wwxXX/Hxxx.git
git push -u origin master

.gitignore 更新后操作,使.gitignore生效

git rm -r --cached .
git add .
git commit -m 'update .gitignore'

你可能感兴趣的:(Ubuntu 下安装GitLab服务器与简单Git操作)