[racket-dev] git error help?
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