CS3213项目
Github 开发工作流程
git clone https://github.com/soedar/cs3213-project
让我们尽最大努力不合并损坏的代码来开发
致力于新功能
git checkout develop
git pull
git checkout -b <name>-<feature>
在功能分支中处理您的新功能
合并回开发
git checkout develop
git pull
git merge <branchName>
git push
移除分支
git branch -d <branchName> (本地分支)
git push origin --delete <branchName> (远程分支)
合并到主
git checkout master
git pull
git merge develop
git pus
评论0
最新资源