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

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -