|
|
|
|
|
by seba_dos1
1060 days ago
|
|
> (I may want to use a changeset that is still developing in more than one branch without maintaining copies of it) Not sure if you realize, but a commit is a state of all files in the repository, not a patch. Patches are calculated for you at display time (and can be calculated against any other commit, not just a parent). Sounds like you may be confused because of trying to apply a wrong mental model of how the repository represents things. I'd say that git actually supports stacked workflows quite well. It's GitHub's PR model that makes it hard. |
|
I agree that the model does but Iām not aware of any good way of using such a workflow with the CLI either. Is there a reasonable way to effectively keep rebasing on top of multiple upstream branches?