On Tue, Mar 30, 2021 at 11:28:52PM +0300, stdedos@xxxxxxxxx wrote: > However, with the Github way of working, that means: > I have two remotes, (origin and upstream), on which, I develop and > push on the `origin`, but I am really tracking/rebasing on/from `upstream`. > > I cannot `--track` upstream, as plain `git push` won't work, and > for pull, I have to separately `git fetch --all`, `git rebase upstream/<branch>` > > - OR - > > I have a branch, which depends on top of another branch (not yet merged upstream). > > o - origin/master > \ > o---o---o---o > | \ > fix/local o--o - (fix/depends-on-local) > > For brevity, I am setting "git branch --set-upstream-to=fix/local", > which helps, when rebasing fix/local on top of origin/master, to rebase > fix/depends-on-local on top of fix/local. > > However, as noted above, a branch cannot be pushed upstream easily and > have a different upstream set at the same time. This is usually called a "triangular" workflow; you can find some discussion in the list archive and documentation by searching for that term. But in short, what you probably want is to set: git config remote.pushdefault yourfork (I'm not entirely sure, but I think "yourfork" is "origin" in your example). Which means that "git push" will behave as you'd like, pushing to your fork. And you are free to set the "upstream" of each branch to the thing it is based on (again, assuming your "upstream" remote is the actual upstream project that you can't push to): git branch --set-upstream-to=upstream/master fix/local git branch --set-upstream-to=fix/local fix/depends-on-local And then from either "fix/local" or "fix/depends-on-local" branches, you can "git pull --rebase" (or in the case of the latter, just "git rebase" would do the same thing). -Peff