其他分享
首页 > 其他分享> > 如何把自己的项目上传到云效 Codeup , git使用

如何把自己的项目上传到云效 Codeup , git使用

作者:互联网

为了标识身份,建议先完成 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

标签:origin,git,Codeup,--,aliyun,https,云效,com
来源: https://blog.csdn.net/weixin_43991241/article/details/121749774