I wonder if there is a possibility to just set a remote upstream for all branches and all future branches to a default value? Because I create feature branches and push them to origin. It's tiring to always do git push --set-upstream origin Feature-4578
for every new feature branch.
Can't I just do something like git remote add --track Feature-** origin git://path
, so that all branches, current and future, with the pattern Feature-** are automatically set to remote origin?