git config --global user.name "USERNAME" git config --global user.email "EMAIL"Create a new repository
git clone https://code.aliyun.com/USERNAME/crawler.git cd crawler touch README.md git add README.md git commit -m "add README" git push -u origin masterExisting folder or Git repository
cd existing_folder git init git remote add origin https://code.aliyun.com/USERNAME/crawler.git git add . git commit git push -u origin master个人记录. git 简单操作.