Command line instructions
Git global setup
git config --global user.name "zhangbiaobin"git config --global user.email "zhangbb@winhong.com"
Create a new repository
git clone http://10.0.2.50/winstack-project/web-qiankun.gitcd web-qiankuntouch README.mdgit add README.mdgit commit -m "add README"git push -u origin master
Existing folder
cd existing_foldergit initgit remote add origin http://10.0.2.50/winstack-project/web-qiankun.gitgit add .git commitgit 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