为了标识身份,建议先完成 Git 全局设置
git config --global user.name "xxx"
git config --global user.email "xxxxxxxxxx@qq.com"
方式一:克隆仓库 ( 这个最简单,把仓库拉到本地以后再开发,然后是add、commit、push)
git clone https://codeup.aliyun.com/xxxxxxxxxxxx/oa/kpi-vue.git
方式二:已有文件夹或仓库(我最常用,现在本机上写大概的目录结构,然后再上传)
cd existing_folder
git init
git remote add origin https://codeup.aliyun.com/xxxxxxxxxxxx/oa/kpi-vue.git
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/xxxxxxxxxx/oa/kpi-vue.git
git push --mirror