You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Implement cherry-pick and rebase like functionality.
Describe the solution you'd like
Though not a high priority, cherry-picking is one of the primitives required to implement a git-likerebase algorithm, which is the real goal.
While we have the fast-forward and 3-way merge/diff primitives in place, we don't have any real concept of a patch-file operation. Figuring out an analogous method to this (as well as a sane way to determine reasonable merge bases) will be the real heart of this problem.
Is your feature request related to a problem? Please describe.
Implement
cherry-pick
andrebase
like functionality.Describe the solution you'd like
Though not a high priority,
cherry-picking
is one of the primitives required to implement agit-like
rebase
algorithm, which is the real goal.While we have the
fast-forward
and3-way
merge/diff primitives in place, we don't have any real concept of apatch-file
operation. Figuring out an analogous method to this (as well as a sane way to determine reasonable merge bases) will be the real heart of this problem.More context at this phenomenal SO post: https://stackoverflow.com/a/39280674/8312905
The text was updated successfully, but these errors were encountered: