Re: [git rebase -i] show time and author besides commit hash and message?

2016-10-31 Thread Jeff King
On Mon, Oct 31, 2016 at 11:27:33PM +0800, ryenus wrote: > > It is possible to change the format globally via config option > > rebase.instructionFormat: > > > > $ git config rebase.instructionFormat "%an (%ad): %s" > > > > The format is the same as for 'git log'. This one outputs author > >

Re: [git rebase -i] show time and author besides commit hash and message?

2016-10-31 Thread ryenus
> It is possible to change the format globally via config option > rebase.instructionFormat: > > $ git config rebase.instructionFormat "%an (%ad): %s" > > The format is the same as for 'git log'. This one outputs author > name, date, and the first line of commit message. Thanks for the prompt

Re: [git rebase -i] show time and author besides commit hash and message?

2016-10-30 Thread Alexei Lozovsky
> It would help especially when the commit message was written badly. > > Or it might be possible to customize just like "git log --format"? It is possible to change the format globally via config option rebase.instructionFormat: $ git config rebase.instructionFormat "%an (%ad): %s" The

[git rebase -i] show time and author besides commit hash and message?

2016-10-30 Thread ryenus
It would help especially when the commit message was written badly. Or it might be possible to customize just like "git log --format"? Thanks