I create a cherry pick with multiple parents. Dialolg in SourceTree is showing select box with parent. There is everything ok. But the result command ignores this selected parent. Command is same as if I do not select any parent.
git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks cherry-pick --no-commit abaca620a07341f6f7113af38d619559d273aec5
I suppose there should be some ting like "-m 1"
git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks cherry-pick -m 1 --no-commit abaca620a07341f6f7113af38d619559d273aec5
Is it correct?