When I git pull
from a branch that is not master, I get following response.
You asked me to pull without telling me which branch you want to merge with, and 'branch.not_master.merge' in your configuration file does not tell me, either. Please specify which branch you want to use on the command line and try again (e.g. 'git pull ').
What I want to configure is to let this branch to accept pull from the master, as well as its remote branch.
Is it possible to do that?
for instance
//on a branch A that is not master.
git pull master //pull from remote HEAD and merge without warning
git pull //pull from A and merge