All of lore.kernel.org
 help / color / mirror / Atom feed
* git error
@ 2017-05-05  2:52 ada
  2017-05-05 10:33 ` Kevin Daudt
  2017-05-05 10:35 ` Johannes Schindelin
  0 siblings, 2 replies; 8+ messages in thread
From: ada @ 2017-05-05  2:52 UTC (permalink / raw)
  To: git

hi,

I used the command below,there's an error,please help me to solve it !
Thank you ~
git push


Best Regards~
ada Wang


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

* Re: git error
  2017-05-05  2:52 git error ada
@ 2017-05-05 10:33 ` Kevin Daudt
  2017-05-05 10:35 ` Johannes Schindelin
  1 sibling, 0 replies; 8+ messages in thread
From: Kevin Daudt @ 2017-05-05 10:33 UTC (permalink / raw)
  To: ada; +Cc: git

On Fri, May 05, 2017 at 10:52:13AM +0800, ada wrote:
> hi,
> 
> I used the command below,there's an error,please help me to solve it !
> Thank you ~
> git push
> 
> 
> Best Regards~
> ada Wang
> 

Hello Ada,

In order for people to be able to help you, you should provide more
details about your problem.

This typically includes what exact command you ran, what the output /
error message you got and any other relevant details.

Kind regards, Kevin.

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

* Re: git error
  2017-05-05  2:52 git error ada
  2017-05-05 10:33 ` Kevin Daudt
@ 2017-05-05 10:35 ` Johannes Schindelin
  1 sibling, 0 replies; 8+ messages in thread
From: Johannes Schindelin @ 2017-05-05 10:35 UTC (permalink / raw)
  To: ada; +Cc: git

Hi Ada,

On Fri, 5 May 2017, ada wrote:

> I used the command below,there's an error,please help me to solve it !
> Thank you ~
> git push

I am sorry to hear that you encountered a problem using Git.

Having said that, this description does not allow anybody to help you, as
not even the error message has been reproduced.

There are too many possible problems to make guessing a sensible options.

Please see https://stackoverflow.com/help/mcve how to craft a question in
a manner that gives anybody else a chance to assist you.

Ciao,
Johannes

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

* Re: GIt error
  2013-06-17 13:47 ` Konstantin Khomoutov
@ 2013-06-17 13:52   ` Konstantin Khomoutov
  0 siblings, 0 replies; 8+ messages in thread
From: Konstantin Khomoutov @ 2013-06-17 13:52 UTC (permalink / raw)
  To: Konstantin Khomoutov; +Cc: justin.sathyanathan, git

On Mon, 17 Jun 2013 17:47:07 +0400
Konstantin Khomoutov <kostix+git@007spb.ru> wrote:

> > For Below issue , O/S is Windows7.
> > 1.Iam getting error attached when cloning of repository is done:
> 
> What error?

Okay, the Microsoft Word document with two screenshots has been
scrubbed by the list software but passed through the git-users list
where you posted this as well; answering here.

The errors shown there most probably has the same nature: Git failed to
create a filesystem entry while attempting to check out a revision
after cloning the project.  So the error is not about cloning, it's
about checking out actual files to the work tree.

The rest is explained in my first reply.

[...]

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

* Re: GIt error
  2013-06-17 13:28 GIt error justin.sathyanathan
  2013-06-17 13:37 ` Fredrik Gustafsson
@ 2013-06-17 13:47 ` Konstantin Khomoutov
  2013-06-17 13:52   ` Konstantin Khomoutov
  1 sibling, 1 reply; 8+ messages in thread
From: Konstantin Khomoutov @ 2013-06-17 13:47 UTC (permalink / raw)
  To: justin.sathyanathan; +Cc: git

On Mon, 17 Jun 2013 13:28:30 +0000
<justin.sathyanathan@accenture.com> wrote:

> For Below issue , O/S is Windows7.
[...]
> 1.Iam getting error attached when cloning of repository is done:

What error?

> 2.Also, when file is tried to be added,it gives error below:
> 
> $ git add *
> fatal: unable to stat
> 'src/development_architecture/integration_application_proj
> ect_template/provider_archetype/provider_archetype/src/main/resources/archetype-
> resources/__rootArtifactId__-data/src/main/java/com/accenture/afpj/sample/skelet
> on/visitor/data/VisitorRepositoryJpaImpl.java': Filename too long
[...]

This is a limitation of Git for Windows: the standard Windows API which
works with unmangled filenames limits their length to 260 characters
while your particular entry is 262 characters long.

AFAIK, there's no clean/easy way to make use of "extended" Windows API
which requires mangling filenames by adding the "\\?\" to them.

You could read [1] for more details.

So it seems you have two options for now:

* Restructure the project.
* Use Git under Cygwin [2] which might not have this limitation
  (personally, I do not know whether it does).

P.S.

Please next time you ask consider doing two things:
* If you post your message to several groups, take care to mention this
  fact in each of them.
* Do not require anyone to do anything "ASAP" unless this claim is
  backed by your or your employer's wallet.

1. http://msdn.microsoft.com/en-us/library/aa365247#maxpath
2. http://cygwin.com/packages/git/

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

* Re: GIt error
  2013-06-17 13:28 GIt error justin.sathyanathan
@ 2013-06-17 13:37 ` Fredrik Gustafsson
  2013-06-17 13:47 ` Konstantin Khomoutov
  1 sibling, 0 replies; 8+ messages in thread
From: Fredrik Gustafsson @ 2013-06-17 13:37 UTC (permalink / raw)
  To: justin.sathyanathan; +Cc: git

On Mon, Jun 17, 2013 at 01:28:30PM +0000, justin.sathyanathan@accenture.com wrote:
> 1.Iam getting error attached when cloning of repository is done:

What error?

> 2.Also, when file is tried to be added,it gives error below:
> 
> $ git add *
> fatal: unable to stat 'src/development_architecture/integration_application_proj
> ect_template/provider_archetype/provider_archetype/src/main/resources/archetype-
> resources/__rootArtifactId__-data/src/main/java/com/accenture/afpj/sample/skelet
> on/visitor/data/VisitorRepositoryJpaImpl.java': Filename too long

As it said, filename is too long.
See the FAQ:
https://github.com/msysgit/msysgit/wiki/Frequently-Asked-Questions
and the thread:
http://thread.gmane.org/gmane.comp.version-control.msysgit/14572

> Request you to help to resolve same asap as it is affecting the project.
If you want reliable and direct help I suggest you hire a git-consult or
buy support. This list will help you in the best way it can (and mostly
that's enough) but cannot do things "asap".

-- 
Med vänliga hälsningar
Fredrik Gustafsson

tel: 0733-608274
e-post: iveqy@iveqy.com

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

* RE: GIt error
@ 2013-06-17 13:28 justin.sathyanathan
  2013-06-17 13:37 ` Fredrik Gustafsson
  2013-06-17 13:47 ` Konstantin Khomoutov
  0 siblings, 2 replies; 8+ messages in thread
From: justin.sathyanathan @ 2013-06-17 13:28 UTC (permalink / raw)
  To: git

Hi,
For Below issue , O/S is Windows7.

Regards,
Justin,
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Sun Certified Enterprise Architect for Java EE platform | Certified TA | Java Capability | Accenture- India Delivery Center
AIM: justinsprabhu| +91-80-40771095 (w)|+91-9611804388 (m)
https://collaboration.accenture.com/javaportal | https://aal.accenture.com

-----Original Message-----
From: Sathyanathan, Justin
Sent: Monday, June 17, 2013 6:51 PM
To: 'git@vger.kernel.org'
Subject: RE: GIt error



Hi,

1.Iam getting error attached when cloning of repository is done:



2.Also, when file is tried to be added,it gives error below:

$ git add *
fatal: unable to stat 'src/development_architecture/integration_application_proj
ect_template/provider_archetype/provider_archetype/src/main/resources/archetype-
resources/__rootArtifactId__-data/src/main/java/com/accenture/afpj/sample/skelet
on/visitor/data/VisitorRepositoryJpaImpl.java': Filename too long

Request you to help to resolve same asap as it is affecting the project.
Regards,
Justin,
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Sun Certified Enterprise Architect for Java EE platform | Certified TA | Java Capability | Accenture- India Delivery Center
AIM: justinsprabhu| +91-9611804388 (m)


This message is for the designated recipient only and may contain privileged, proprietary, or otherwise confidential information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the e-mail by you is prohibited.

Where allowed by local law, electronic communications with Accenture and its affiliates, including e-mail and instant messaging (including content), may be scanned by our systems for the purposes of information security and assessment of internal compliance with Accenture policy.

______________________________________________________________________________________

www.accenture.com

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

* Git Error
@ 2008-08-21 13:57 Brian Loomis
  0 siblings, 0 replies; 8+ messages in thread
From: Brian Loomis @ 2008-08-21 13:57 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.

TIA

Brian Loomis
http://www.virtualrelations.us
(208) 639-2569 - 208 NEW BLOX

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

end of thread, other threads:[~2017-05-05 10:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-05  2:52 git error ada
2017-05-05 10:33 ` Kevin Daudt
2017-05-05 10:35 ` Johannes Schindelin
  -- strict thread matches above, loose matches on Subject: below --
2013-06-17 13:28 GIt error justin.sathyanathan
2013-06-17 13:37 ` Fredrik Gustafsson
2013-06-17 13:47 ` Konstantin Khomoutov
2013-06-17 13:52   ` Konstantin Khomoutov
2008-08-21 13:57 Git Error Brian Loomis

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.