gitlab

Command line instructions

Git global setup   Git全局设置
git config --global user.name "zhanghui.Chen"
git config --global user.email "172360937@qq.com"
Create a new repository  创建一个新的存储库
git clone https://gitlab.com/13126618000/123.git
cd 123
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 https://gitlab.com/13126618000/123.git
git add .
git commit -m "Initial commit"
git push -u origin master
Existing Git repository   现有的Git存储库
cd existing_repo
git remote rename origin old-origin
git remote add origin https://gitlab.com/13126618000/123.git
git push -u origin --all
git push -u origin --tags
原文地址:https://www.cnblogs.com/chefweb/p/8890668.html