一、GitLab 官方命令
Command line instructions
Git global setup
git config --global user.name "马艳泽"
git config --global user.email "myz@***.com"
Create a new repository
git clone http://192.168.0.205/smcm_bak/smcm_web.git
cd smcm_web
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 http:
git add .
git commit -m "Initial commit"
git push -u origin master
Existing Git repository
cd existing_repo
git remote add origin http://192.168.0.205/smcm_bak/smcm_web.git
git push -u origin --all
git push -u origin --tags