Command line instructions

Git global setup
  1. git config --global user.name "zhangbiaobin"
  2. git config --global user.email "zhangbb@winhong.com"

Create a new repository
  1. git clone http://10.0.2.50/winstack-project/web-qiankun.git
  2. cd web-qiankun
  3. touch README.md
  4. git add README.md
  5. git commit -m "add README"
  6. git push -u origin master

Existing folder
  1. cd existing_folder
  2. git init
  3. git remote add origin http://10.0.2.50/winstack-project/web-qiankun.git
  4. git add .
  5. git commit
  6. git push -u origin master

Existing Git repository
cd existing_repo
git remote add origin http://10.0.2.50/winstack-project/web-qiankun.git
git push -u origin --all
git push -u origin --tags