[racket-dev] git error help?

From: D Herring (dherring at tentpost.com)
Date: Sun May 1 03:04:39 EDT 2011

On 04/25/2011 10:32 AM, Robby Findler wrote:
> Anyone recognize this? (git up is git pull --ff-only --stat --all)
>
> C:\Users\Administrator\git\exp\plt>git up
> Fetching origin
> error: unable to resolve reference refs/remotes/origin/master: No error
>  From git:plt
>   ! [new branch]      master     ->  origin/master  (unable to update local ref)
> error: Could not fetch origin

For the future, try 'git fetch -v origin'.  A pull is a fetch plus a 
merge, this error indicates the fetch was failing, and the verbose 
fetch might give more diagnostics.

The following commands show the settings used by fetch.
# git config remote.origin.url
# git config remote.origin.fetch

Maybe one of them was broken?

- Daniel



Posted on the dev mailing list.