一、上传代码
创建 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
网友评论