I have a 'master' branch, and a 'bugfix' branch. this bugfix branch needs to be always updated with master commits, but i need to push to its own branch.
i tried
git branch -f --track bugfix origin/master
and tried set-upstream too but seems to set both, pull and push from/to 'master'.