git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
To: lyle.ziegelmiller@gmail.com
Cc: 'Jeff King' <peff@peff.net>,
	"'brian m. carlson'" <sandals@crustytoothpaste.net>,
	git@vger.kernel.org
Subject: RE: ! [remote rejected] master -> master (unpacker error)
Date: Fri, 28 Feb 2020 23:53:12 +0100 (CET)	[thread overview]
Message-ID: <nycvar.QRO.7.76.6.2002282352470.11433@tvgsbejvaqbjf.bet> (raw)
In-Reply-To: <004201d5edb4$3dc34040$b949c0c0$@gmail.com>

Hi Lyle,

On Thu, 27 Feb 2020, lyle.ziegelmiller@gmail.com wrote:

> " But I vividly remember that there used to be a problem even with
> `git.exe`, probably still is a problem on older Windows versions. That might
> be the problem here?"
>
> I'm using the latest version of Windows 10 and Cygwin's version of git -
> version 2.21.0. This is being executed in a Cygwin window, not a DOS
> terminal.

I was talking about Git for Windows, not about Cygwin Git.

Ciao,
Johannes

> All of this stuff used to work.
>
> Regards
>
> Lyle
>
> -----Original Message-----
> From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
> Sent: Thursday, February 27, 2020 1:05 PM
> To: Jeff King <peff@peff.net>
> Cc: brian m. carlson <sandals@crustytoothpaste.net>;
> lyle.ziegelmiller@gmail.com; git@vger.kernel.org
> Subject: Re: ! [remote rejected] master -> master (unpacker error)
>
> Hi Peff,
>
> On Tue, 18 Feb 2020, Jeff King wrote:
>
> > On Sun, Feb 16, 2020 at 09:16:04PM +0000, brian m. carlson wrote:
> >
> > > On 2020-02-16 at 16:10:12, lyle.ziegelmiller@gmail.com wrote:
> > > >
> > > > Any updates on this error I emailed a while back?
> > > >
> > > > lylez@LJZ-DELLPC ~/python
> > > > $ git push
> > > > Enumerating objects: 5, done.
> > > > Counting objects: 100% (5/5), done.
> > > > Delta compression using up to 4 threads Compressing objects: 100%
> > > > (2/2), done.
> > > > Writing objects: 100% (3/3), 279 bytes | 23.00 KiB/s, done.
> > > > Total 3 (delta 1), reused 0 (delta 0)
> > > > remote: fatal: not a git repository: '.'
> > >
> > > This error is telling you that Git doesn't think the remote location
> > > is a Git repository.  It could be because it really isn't one, or it
> > > could be that the permissions are wrong.
> > >
> > > It could also be that the repository is mostly there but very
> > > slightly corrupt and therefore can't be detected as one.  For
> > > example, it could be missing its HEAD reference.
> >
> > I think it's more subtle than that, though. If it wasn't a git
> > repository at all, then receive-pack would fail to start, and you'd
> > get something like this:
> >
> >   $ git push /foo/bar
> >   fatal: '/foo/bar' does not appear to be a git repository
> >   fatal: Could not read from remote repository.
> >
> >   Please make sure you have the correct access rights
> >   and the repository exists.
> >
> > The output above, plus the:
> >
> >   error: remote unpack failed: unpack-objects abnormal exit
> >
> > makes it looks like receive-pack started just fine, but something
> > about the way it set up the environment made the child unpack-objects
> > unhappy when it tried to initialize its internal repo variables.
> >
> > I have no clue what that "something" is, though. Windows and UNC paths
> > were mentioned elsewhere, which seem plausible. It mentions ".", so
> > presumably we've chdir()'d into the receiving repository and set
> > $GIT_DIR. Which I'd think rules out any weird interpretations of UNC
> > paths in $GIT_DIR.
>
> I thought that I remembered that it is not possible to `chdir()` into a UNC
> path. And it would seem that `cmd.exe` still cannot have a UNC path as a
> current directory.
>
> But PowerShell can, and so does `git.exe`, apparently (I tested this using
> `wsl bash -lc "cd ~ && git.exe -C . version"`).
>
> But I vividly remember that there used to be a problem even with `git.exe`,
> probably still is a problem on older Windows versions. That might be the
> problem here?
>
> Ciao,
> Dscho
>
> > I'd expect that error if we did a chdir() internally to some other
> > path after setting up $GIT_DIR, but I don't know why we'd do that (I
> > thought at first that the quarantine code in receive-pack might be
> > related, but we don't ever chdir() into the quarantine dir; we just
> > set up GIT_OBJECT_DIRECTORY).
> >
> > -Peff
> >
>
>

      parent reply	other threads:[~2020-02-28 22:53 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-16 16:10 ! [remote rejected] master -> master (unpacker error) lyle.ziegelmiller
2020-02-16 21:16 ` brian m. carlson
2020-02-17 16:25   ` lyle.ziegelmiller
2020-02-17 17:17     ` brian m. carlson
2020-02-17 22:45     ` Randall S. Becker
2020-02-18  5:19   ` Jeff King
2020-02-27 21:04     ` Johannes Schindelin
2020-02-27 21:24       ` lyle.ziegelmiller
2020-02-27 22:58         ` Jeff King
2020-02-28 22:53         ` Johannes Schindelin [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=nycvar.QRO.7.76.6.2002282352470.11433@tvgsbejvaqbjf.bet \
    --to=johannes.schindelin@gmx.de \
    --cc=git@vger.kernel.org \
    --cc=lyle.ziegelmiller@gmail.com \
    --cc=peff@peff.net \
    --cc=sandals@crustytoothpaste.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).