Replies: 1 comment 1 reply
-
First off: apologies for the late reply, github didn't send me notifications about comments in these discussion threads! I'm not sure that I understand your use case. Could you describe how you would go about doing this on the command line? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have my own branch where I have a collections of patches on my local master branch.
I would like to create a PR branch for each of them that is based on the upstream branch.
What is your workflow for that?
In the
Commits
window there is branch-off function bound ton
. However this will base a branch based on current master with unrelated commits that also live in my local master.Edit
My workflow in plain git would look like that (origin is my my fork, upstream is the project I want to upstream patches to)
Usually I would actually use
tig master
while being insome-feature-branch-1
instead ofgit cherry-pick
and have a cherry-pick key binding to quickly get my commits into a feature branch. ( I am still missing this command line flag inlazygit
to see a different branch from the current one, but this is another story :))Beta Was this translation helpful? Give feedback.
All reactions