Đoàn Trần Công Danh <congdanhqx@xxxxxxxxx> writes: > On 2021-05-13 18:49:03-0600, Alex Henrie <alexhenrie24@xxxxxxxxx> wrote: >> On Thu, May 13, 2021 at 7:23 AM Sergey Organov <sorganov@xxxxxxxxx> wrote: >> > >> > Hello, >> > >> > Is there a way to specify additional options for "git rebase" when it's >> > invoked via: >> > >> > git pull --rebase >> > >> > ? What if rebase is used implicitly due to "pull.rebase" being set >> > accordingly? >> > >> > In particular, I'd like to be able to: >> > >> > git pull --rebase --no-fork-point >> > >> > but it doesn't work. >> >> It would be cumbersome, but you could run `git config rebase.forkPoint >> false` before pulling and `git config rebase.forkPoint true` after. > > Or, for this *specific* case: > > git -c rebase.forkpoint=false pull --rebase That's nice, thanks! Doesn't solve entire issue, but definitely better than nothing. Probably add generic cmd.<cmd>.opts config support, so that I can say: git -c cmd.rebase.opts="--no-fork-point --empty=keep" pull --rebase Thoughts? Thanks, -- Sergey Organov