* Git Error Message
@ 2017-06-03 8:13 christienne shultz
2017-06-05 8:48 ` Konstantin Khomoutov
0 siblings, 1 reply; 4+ messages in thread
From: christienne shultz @ 2017-06-03 8:13 UTC (permalink / raw)
To: git
Hello,
I have installed the Git software and upon trying to update a
repository by the "open recent repository" link and am unable to
access the menu-or anything-from there. Instead a window pops up with
the following error message:
"\usage C:\Program Files\Git\mingw64/libexec/git-core\git-GUI[
{blame|browser|citool}]
Can you please tell me what this error message means and how to fix
the issue? Thank you!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Git Error Message
2017-06-03 8:13 Git Error Message christienne shultz
@ 2017-06-05 8:48 ` Konstantin Khomoutov
2017-06-05 13:54 ` Philip Oakley
0 siblings, 1 reply; 4+ messages in thread
From: Konstantin Khomoutov @ 2017-06-05 8:48 UTC (permalink / raw)
To: christienne shultz; +Cc: git
On Sat, Jun 03, 2017 at 01:13:05AM -0700, christienne shultz wrote:
> I have installed the Git software and upon trying to update a
> repository by the "open recent repository" link and am unable to
> access the menu-or anything-from there. Instead a window pops up with
> the following error message:
>
> "\usage C:\Program Files\Git\mingw64/libexec/git-core\git-GUI[
> {blame|browser|citool}]
>
> Can you please tell me what this error message means and how to fix
> the issue? Thank you!
A shot in the dark until someone with access to Windows chimes in (it
appears that the "open recent repository" feature of `git gui` is specific
to Git for Windows): have you verified that repository actually exists
on your filesystem?
Another interesting question is whether the pathname of that repository
includes space characters which could in principle confuse `git gui`.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Git Error Message
2017-06-05 8:48 ` Konstantin Khomoutov
@ 2017-06-05 13:54 ` Philip Oakley
2017-06-05 14:00 ` Konstantin Khomoutov
0 siblings, 1 reply; 4+ messages in thread
From: Philip Oakley @ 2017-06-05 13:54 UTC (permalink / raw)
To: Konstantin Khomoutov, christienne shultz; +Cc: git
From: "Konstantin Khomoutov" <kostix+git@007spb.ru>
> On Sat, Jun 03, 2017 at 01:13:05AM -0700, christienne shultz wrote:
>
>> I have installed the Git software and upon trying to update a
>> repository by the "open recent repository" link and am unable to
>> access the menu-or anything-from there. Instead a window pops up with
>> the following error message:
>>
>> "\usage C:\Program Files\Git\mingw64/libexec/git-core\git-GUI[
>> {blame|browser|citool}]
>>
Can you show the full error message / dialog window?
With a little bit of staring you will see the line numbers and a few clues
about the stack history for the error (i.e. line number and variable)
>> Can you please tell me what this error message means and how to fix
>> the issue? Thank you!
>
> A shot in the dark until someone with access to Windows chimes in (it
> appears that the "open recent repository" feature of `git gui` is specific
> to Git for Windows): have you verified that repository actually exists
> on your filesystem?
Feature is common but the implementations look slightly different
https://github.com/git/git/blob/master/git-gui/lib/choose_repository.tcl#L123
$opts insert end [mc "Open Existing Repository"] link_open
https://github.com/git-for-windows/git/blob/master/git-gui/lib/choose_repository.tcl#L152
-text [mc "Open Recent Repository:"]
I'm not sure how the differences are created between the two source codes.
The nominal upstream by Pat Thoyts has the same as the git.git version
https://github.com/patthoyts/git-gui/blob/master/lib/choose_repository.tcl#L123
--Philip
>
> Another interesting question is whether the pathname of that repository
> includes space characters which could in principle confuse `git gui`.
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Git Error Message
2017-06-05 13:54 ` Philip Oakley
@ 2017-06-05 14:00 ` Konstantin Khomoutov
0 siblings, 0 replies; 4+ messages in thread
From: Konstantin Khomoutov @ 2017-06-05 14:00 UTC (permalink / raw)
To: Philip Oakley; +Cc: Konstantin Khomoutov, christienne shultz, git
On Mon, Jun 05, 2017 at 02:54:55PM +0100, Philip Oakley wrote:
> > > I have installed the Git software and upon trying to update a
> > > repository by the "open recent repository" link and am unable to
> > > access the menu-or anything-from there. Instead a window pops up with
> > > the following error message:
> > >
> > > "\usage C:\Program Files\Git\mingw64/libexec/git-core\git-GUI[
> > > {blame|browser|citool}]
>
> Can you show the full error message / dialog window?
>
> With a little bit of staring you will see the line numbers and a few clues
> about the stack history for the error (i.e. line number and variable)
>
> > > Can you please tell me what this error message means and how to fix
> > > the issue? Thank you!
> >
> > A shot in the dark until someone with access to Windows chimes in (it
> > appears that the "open recent repository" feature of `git gui` is specific
> > to Git for Windows): have you verified that repository actually exists
> > on your filesystem?
>
> Feature is common but the implementations look slightly different
>
> https://github.com/git/git/blob/master/git-gui/lib/choose_repository.tcl#L123
> $opts insert end [mc "Open Existing Repository"] link_open
>
> https://github.com/git-for-windows/git/blob/master/git-gui/lib/choose_repository.tcl#L152
> -text [mc "Open Recent Repository:"]
>
> I'm not sure how the differences are created between the two source codes.
>
> The nominal upstream by Pat Thoyts has the same as the git.git version
> https://github.com/patthoyts/git-gui/blob/master/lib/choose_repository.tcl#L123
Heh, somehow I've got an impression the GfW's version of `git gui` was
taught to look in the registry for the recent folders and then pick
those which have ".git" directory located inside or whose names end
in ".git" ;-)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-06-05 14:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-03 8:13 Git Error Message christienne shultz
2017-06-05 8:48 ` Konstantin Khomoutov
2017-06-05 13:54 ` Philip Oakley
2017-06-05 14:00 ` Konstantin Khomoutov
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 NNTP newsgroup(s).