git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Git Errors for local refs
@ 2008-08-21 14:12 Brian Loomis
  2008-08-21 20:24 ` Jeff King
  0 siblings, 1 reply; 2+ messages in thread
From: Brian Loomis @ 2008-08-21 14:12 UTC (permalink / raw
  To: git

I'm getting the error trying to do a pull from a repos I set up on  
GitHub yesterday.

error: some local refs could not be updated; try running
'git remote prune origin' to remove any old, conflicting branches

I've run the  'git remote prune origin' but still get the error doing  
the pull.

Any ideas how to resolve this?  Google seems to show me nothing on  
this and I have also looked at the manual.

I've run the git fsck and git gc but still seem to get these.

TIA

Brian Loomis

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Git Errors for local refs
  2008-08-21 14:12 Git Errors for local refs Brian Loomis
@ 2008-08-21 20:24 ` Jeff King
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2008-08-21 20:24 UTC (permalink / raw
  To: Brian Loomis; +Cc: git

On Thu, Aug 21, 2008 at 08:12:42AM -0600, Brian Loomis wrote:

> I'm getting the error trying to do a pull from a repos I set up on GitHub 
> yesterday.
>
> error: some local refs could not be updated; try running
> 'git remote prune origin' to remove any old, conflicting branches
>
> I've run the  'git remote prune origin' but still get the error doing the 
> pull.
>
> Any ideas how to resolve this?  Google seems to show me nothing on this 
> and I have also looked at the manual.

Probably google turned up nothing because the error message is new in
the latest version of git.

Generally what happens is that the remote used to have some branch
"foo", so you have "refs/remotes/origin/foo", but now they deleted it in
favor of "foo/bar", so the new remote tracking branch
"refs/remotes/origin/foo/bar" conflicts with "refs/remotes/origin/foo"
(and the conflict, as you might guess, is an artifact of the storage
model for refs, which matches the filesystem semantics).

Running 'git remote prune origin' will see that 'foo' no longer exists
at your origin and remove your refs/remotes/origin/foo, and the next
fetch will work fine.

But in this case (and I _thought_ every other, but perhaps we are
missing one), the full output should have a clue as to what is causing .
In a test repo, I get:

  $ git fetch
  error: 'refs/remotes/origin/foo' exists; cannot create 'refs/remotes/origin/foo/bar'
  From /home/peff/foo/parent/
   ! [new branch]      foo/bar    -> origin/foo/bar  (unable to update local ref)
   error: some local refs could not be updated; try running
    'git remote prune origin' to remove any old, conflicting branches

Are you seeing any other error output from your fetch? If so, what does
it say?

-Peff

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-08-21 20:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-21 14:12 Git Errors for local refs Brian Loomis
2008-08-21 20:24 ` Jeff King

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).