0%

【git 使用】分支合并

  • master发生改变,同步到feature branch

merge master into feature branch

1
2
git checkout <feature branch>
git merge master