gitlab 提交

Posted osbreak

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gitlab 提交相关的知识,希望对你有一定的参考价值。

gitlab 提交

Git global setup
git config --global user.name "lial"
git config --global user.email "[email protected]"
Create a new repository
git clone [email protected]:lial/SiteCenter-Live.git
cd SiteCenter-Live
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Existing folder
cd existing_folder
git init
git remote add origin [email protected]:lial/SiteCenter-Live.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 [email protected]:lial/SiteCenter-Live.git
git push -u origin --all
git push -u origin --tags

以上是关于gitlab 提交的主要内容,如果未能解决你的问题,请参考以下文章

Gitlab代码管理仓库安装部署

安装gitlab并汉化

Gitlab部署及汉化操作

GitLab安装与汉化-实战

持续集成与自动化部署 - gitlab部署

持续集成之Gitlab安装与应用