一、克隆项目
git clone 地址 比如:git clone https://gitee.com/xxx/myproject.git
三、查看分支
git branch
二、提交修改的项目
git add .
git commit -m "注释说明 " //对提交内容的注释说明
git push -u origin master //master有可能是其他分支
三、将项目拉取项目
git pull origin master //master是分支名称
一、克隆项目
git clone 地址 比如:git clone https://gitee.com/xxx/myproject.git
三、查看分支
git branch
二、提交修改的项目
git add .
git commit -m "注释说明 " //对提交内容的注释说明
git push -u origin master //master有可能是其他分支
三、将项目拉取项目
git pull origin master //master是分支名称