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

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -