Git global setup
git config --global user.name "Hangfei.Lou"
git config --global user.email "xxx@xx"
Create a new repository
git clone git@git.aaa.git
cd biz-login-v2-qkl
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Existing folder or Git repository
cd existing_folder
git init
git remote add origin git@git.aaa.git
git add .
git commit
git push -u origin master