On Sun, Apr 17, 2011 at 07:09:15PM +0200, Dominik Vogt wrote: > 1. Make sure that the release branch is an ancestor of the > devel branch. > 2. Check out the devel branch and set a temporary tag. > $ git checkout devel > $ git tag foo > 3. Check out the release branch > $ git checkout release
> 4. Rebase the release branch to the devel branch > $ git rebase devel Oops, the right command here is "git rebase foo" of course. Afterwards you want to delete the tag with git tag -d foo. Ciao Dominik ^_^ ^_^ -- Dominik Vogt
