一、没有仓库

首先要有gitee账号

创建仓库

有了仓库就按已有仓库进行操作

二、已有仓库

先让仓库负责人把自己拉进仓库 成为开发者或者管理员

 git clone 仓库地址

开始工作

git add .
git commit -m “ 提交说明”
git pull 更新一下也叫同步 将线上代码更新到本地
git push 提交到线上

创建分支

git branch 分支名

切换分支

git checkout 分支名
git add .
git commit -m "xxx"

更新分支

git pull origin 分支名

提交到某分支

git push origin 分支名

合并分支

注意首先要切换到主分支
git checkout master
git merge origin/分支名
git add.
git commit -m "xxx"
git pull 分支名
git push 分支名

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部