[git-users] Re: git can't find remote helper for https (but it's there)

2014-02-12 Thread Thomas Ferris Nicolaisen
On Wednesday, February 12, 2014 11:16:37 AM UTC+1, Antonio Pérez Barrero 
wrote:

 So I guess it's an installation problem. Any clue on how git locates 
 remote helpers installed in the system?


This is a bit of a shot in the dark, but did you try completely installing 
Git after installing libcurl-devel? 

I don't know much about the remote helpers stuff unfortunately.

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] Re: git can't find remote helper for https (but it's there)

2014-02-12 Thread Antonio Pérez Barrero
I looked at this post in
stackoverflowhttp://stackoverflow.com/a/16946531/198011 and
use strace to find out git clone is trying to look for remote helpers under
$HOME/bin/libexec/git-core, but make install left the
libexec/git-coredirectory under$HOME,
instead of $HOME/bin.

Creating a soft link under $HOME/bin/ to ../libexec got it working. So it
is rather an installation issue or a bug in the directory list where git
looks for binaries under libexec.


On Wed, Feb 12, 2014 at 12:15 PM, Thomas Ferris Nicolaisen tfn...@gmail.com
 wrote:

 On Wednesday, February 12, 2014 11:16:37 AM UTC+1, Antonio Pérez Barrero
 wrote:

 So I guess it's an installation problem. Any clue on how git locates
 remote helpers installed in the system?


 This is a bit of a shot in the dark, but did you try completely installing
 Git after installing libcurl-devel?

 I don't know much about the remote helpers stuff unfortunately.

 --
 You received this message because you are subscribed to a topic in the
 Google Groups Git for human beings group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/git-users/Prahuw9yu1g/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
   Antonio Pérez Barrero
   apbarr...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] Re: git can't find remote helper for https (but it's there)

2014-02-12 Thread Magnus Therning
On Wed, Feb 12, 2014 at 12:36 PM, Antonio Pérez Barrero
apbarr...@gmail.com wrote:
 I looked at this post in stackoverflow and use strace to find out git clone
 is trying to look for remote helpers under $HOME/bin/libexec/git-core, but
 make install left the libexec/git-core directory under $HOME, instead of
 $HOME/bin.

This sounds like it could be a bug in the git build system, but
judging if it is would require the exact build steps you ran.

/M

-- 
Magnus Therning  OpenPGP: 0xAB4DFBA4
email: mag...@therning.org   jabber: mag...@therning.org
twitter: magthe   http://therning.org/magnus

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] Re: git can't find remote helper for https (but it's there)

2014-02-12 Thread Antonio Pérez Barrero
Just followed first paragraph in INSTALL an run:

$ make  make install

But I found it was my environment that was wrong, not a git build system
issue. I had GIT_EXEC_PATH pointing to an NFS directory where an older
version of git-core binaries was installed, just unsetting the env variable
makes git installation under $HOME/bin work, even removing the soft link to
../libexec.

Thanks for helping!



On Wed, Feb 12, 2014 at 1:12 PM, Magnus Therning mag...@therning.orgwrote:

 On Wed, Feb 12, 2014 at 12:36 PM, Antonio Pérez Barrero
 apbarr...@gmail.com wrote:
  I looked at this post in stackoverflow and use strace to find out git
 clone
  is trying to look for remote helpers under $HOME/bin/libexec/git-core,
 but
  make install left the libexec/git-core directory under $HOME, instead of
  $HOME/bin.

 This sounds like it could be a bug in the git build system, but
 judging if it is would require the exact build steps you ran.

 /M

 --
 Magnus Therning  OpenPGP: 0xAB4DFBA4
 email: mag...@therning.org   jabber: mag...@therning.org
 twitter: magthe   http://therning.org/magnus

 --
 You received this message because you are subscribed to a topic in the
 Google Groups Git for human beings group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/git-users/Prahuw9yu1g/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
   Antonio Pérez Barrero
   apbarr...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.