# tutorial-git **Repository Path**: cph_2016/tutorial-git ## Basic Information - **Project Name**: tutorial-git - **Description**: tutorial-git - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-15 - **Last Updated**: 2021-12-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tutorial-git # merge 使用master分支发布 1. ``git checkout master`` 2. ``git merge new_feature`` # rebase 使用feature开发完后合并至main 更新本地feature分支对应的origin/feature上的代码 `git rebase origin/feature` `git push` 若发生冲突,解决冲突后执行 `git add .` `git rebase --continue` `git push` 若要取消rebase,执行 `git rebase --abort`