上传本地项目到Gitlab
$ git config --global user.name "yangkai"
git config --global user.name "杨凯" git config --global user.email "yangkai@ww.com"
$ git init
$ git add .
$ git commit -m "First commit"
$ git remote add origin http://192.168.0.86/yangkai/mbpt.git
$ git status
$ git commit -m 注释
$ git pull
$ git push -u origin HEAD:master --force