从当前重新引用多个git分支?

时间:2010-10-08 21:40:11

标签: svn git

  

可能重复:
  Git: How to rebase many branches (with the same base commit) at once?

我在本地使用git,所以在给定时间我有很多分支。协同工作,该项目运行单个subversion存储库。当我需要更新本地时,工作流程类似于以下内容:

git checkout master
svn update
git add .
git commit -am "updated from svn"

现在我的主人可能有几个分支。为了获得单个分支,我将检查分支和rebase,如下所示:

git checkout new-feature
git rebase master

我通常必须在许多分支机构中执行此操作,而很少只需要一个分支机构。我想知道是否可以用一个命令来修改多个分支?

0 个答案:

没有答案