On Fri, May 2, 2008 at 12:25 AM, Cladan <wineforum-user@xxxxxxxxxx> wrote: > quick question: > > if I do: > git bisect reset > > CC="ccache gcc" ./configure --verbose && make clean && make > > I am compiling the latest build right ? > No...that will give HEAD, which is the whatever you had git set to before telling it to bisect. $ git bisect reset ; git reset origin will give you the latest git you have downloaded. Run: $ git fetch ; git rebase origin To update git from winehq