Re: git rebase --interactive using short SHA-1's internally

2013-08-10 Thread Diogo de Campos
Ooops, that's exactly it =) On Sat, Aug 10, 2013 at 2:28 AM, Junio C Hamano wrote: > David writes: > >> On 10 August 2013 05:22, Diogo de Campos wrote: >>> Had some problems rebasing a large repository, fatal error because a >>> short SHA-1 ref was ambiguous. >> >> This recent disussion might a

Re: git rebase --interactive using short SHA-1's internally

2013-08-09 Thread Junio C Hamano
David writes: > On 10 August 2013 05:22, Diogo de Campos wrote: >> Had some problems rebasing a large repository, fatal error because a >> short SHA-1 ref was ambiguous. > > This recent disussion might also interest you: > http://thread.gmane.org/gmane.comp.version-control.git/229091 I was wond

Re: git rebase --interactive using short SHA-1's internally

2013-08-09 Thread David
On 10 August 2013 05:22, Diogo de Campos wrote: > Had some problems rebasing a large repository, fatal error because a > short SHA-1 ref was ambiguous. This recent disussion might also interest you: http://thread.gmane.org/gmane.comp.version-control.git/229091 -- To unsubscribe from this list: se

git rebase --interactive using short SHA-1's internally

2013-08-09 Thread Diogo de Campos
Had some problems rebasing a large repository, fatal error because a short SHA-1 ref was ambiguous. After a quick inspection of git-rebase--interactive.sh, I found that it uses short refs in a few places (git rev-parse --short). Removing that option fixed my problem. See: https://github.com/git/