0

Possible Duplicate:
Git: How to rebase many branches (with the same base commit) at once?

I'm working with git locally, so I have many branches at a given time. Collaboratively, the project runs off a single subversion repository. When I need to update my local, the workflow is similar to the following:

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

Now I may have several branches that are behind my master. To get a single branch current, I'll checkout the branch and rebase like so:

git checkout new-feature
git rebase master

I usually have to do this with many branches and rarely just one branch. I'm wondering if it is possible to rebase more than one branch with a single command?

Community
  • 1
  • 1
Chris Missal
  • 5,756
  • 2
  • 27
  • 46
  • 1
    http://stackoverflow.com/questions/866218/git-how-to-rebase-many-branches-with-the-same-base-commit-at-once should be a good start for what you want to do. – VonC Oct 08 '10 at 22:10
  • @VonC Thanks for the link. I added my vote to close this question as a duplicate. – Chris Missal Oct 14 '10 at 14:44

0 Answers0