issue a single git command to pull or rebase all derived branches from the parent branch? -
in git, have 1 parent branch p , several branches based on p called a, b, c. want rebase a, b, , c on updated p in single git command. possible? if so, how?
add in .gitconfig:
massrebase = "!sh -c 'for branch in $@; git rebase $0 $branch; done;'" and then
git massrebase p b c
Comments
Post a Comment