1: 将card 分支进行本地提交
执行命令: git add.
git commit -m "完成了购物车的开发"
2:将本地的cart 分支 推送到码云:
git push -u origin cart
3:将本地cart 分支中的代码 合并到master 分支:
git checkout master
git marge cart
git push
4: 删除本地分支:
git branch -d cart
1: 将card 分支进行本地提交
执行命令: git add.
git commit -m "完成了购物车的开发"
2:将本地的cart 分支 推送到码云:
git push -u origin cart
3:将本地cart 分支中的代码 合并到master 分支:
git checkout master
git marge cart
git push
4: 删除本地分支:
git branch -d cart