软件测试

Git上传/拉取代码

2020-06-10  本文已影响0人  明小五

一、上传代码

创建 git 仓库:
mkdir rest_Assured
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/xxxxx/rest_test.git 
//https为自己分支的地址
git push -u origin master
已有仓库
cd existing_git_repo //进入本地的仓库
git remote add origin https://gitee.com/xxxxx/rest_test.git   
//https为自己分支的地址 
git push -u origin master

二、拉取代码

git clone https://gitee.com/lshwhm123/rest_Assured.git
上一篇下一篇

猜你喜欢

热点阅读