GITLAB 使用方法

本文主要介绍搭建私有的Gitlab服务器,并将titans-core迁移到gitlab的仓库。

首先在120服务器搭建Gitlab,导出titans-core的源代码,并导入到gitlab仓库。 115测试服务器的git升级到git 2.2.1版本。

一、Git 全局设置

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

二、创建新的仓库

git clone http://私服地址/alinkpay/testproject.git
cd testproject
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

三、导入已经存在的目录

cd existing_folder
git init
git remote add origin http://私服地址/alinkpay/testproject.git
git add .
git commit -m "Initial commit"
git push -u origin master

四、Existing Git repository

cd existing_repo
git remote rename origin old-origin
git remote add origin http://私服地址/alinkpay/testproject.git
git push -u origin --all
git push -u origin --tags

你可能感兴趣的:(GITLAB 使用方法)