为了标识身份,建议先完成 Git 全局设置
git config --global user.name "xiaotang"
git config --global user.email "xiaotang@163.com"
git clone https://codeup.aliyun.com/60bf3904b8301d20d58b9382/CD-FD/xiaotang/miele-h5-msg.git
cd miele-h5-msg
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
cd existing_folder
git init
git remote add origin https:
git add .
git commit
git push -u origin master
git clone --bare https://git.example.com/your/project.git your_path
cd your_path
git remote set-url origin https://codeup.aliyun.com/60bf3904b8301d20d58b9382/CD-FD/xiaotang/miele-h5-msg.git
git push --mirror