Re: [PATCH] rebase -i: respect to core.abbrev

2013-09-30 Thread Jonathan Nieder
Kirill A. Shutemov wrote: > collapse_todo_ids() uses `git rev-parse --short=7' to abbrev commit ids. > Let's drop argument from --short to use default (7) or config value > instead. Since the todo ids are expanded immediately after the editor exits, there is not much risk of accidental hash colli

Re: [PATCH] rebase -i: respect to core.abbrev

2013-09-28 Thread Eric Sunshine
On Sat, Sep 28, 2013 at 5:10 PM, Kirill A. Shutemov wrote: > collapse_todo_ids() uses `git rev-parse --short=7' to abbrev commit ids. > Let's drop argument from --short to use default (7) or config value > instead. > > Signed-off-by: Kirill A. Shutemov > --- > git-rebase--interactive.sh | 2 +- >

RE: [PATCH] rebase -i: respect to core.abbrev

2013-09-28 Thread Kirill A. Shutemov
Kirill A. Shutemov wrote: > git rebase -i collapses ids on todo list to 7 hexdigits. > Let's use core.abbrev config option instead, if it's set. > > Signed-off-by: Kirill A. Shutemov > --- > git-rebase--interactive.sh | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/gi