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

2014-02-12 Thread Antonio Pérez Barrero
Hi, I installed git 1.8.5.4 from source under $HOME/bin. My system is SUSE Linux Enterprise Server 11 SP1 (x86_64) After installation I cannot clone repos from https urls, getting the following error: $ git clone https://github.com/apbarrero/pyrad.git

[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

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

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,

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

Re: [git-users] git stash and --skip-worktree files

2014-02-12 Thread Konstantin Khomoutov
On Sun, 9 Feb 2014 13:52:20 -0800 (PST) Mickey Killianey mickey.killia...@gmail.com wrote: My team is starting to use the --skip-worktree flag on files to allow them to keep modified files in their working directories. Ideally, they'd like an option for git-stash to apply to skip-worktree

Re: [git-users] hook file encoding for text files

2014-02-12 Thread Konstantin Khomoutov
On Wed, 5 Feb 2014 23:41:51 -0800 (PST) Philipp Kraus philipp.kr...@flashpixx.de wrote: I try to write a pre-push hook in a bare repo. I would like to check the file encoding on all text files, so how can I get all file types that are handled as text file from git. I have defined some types

[git-users] Can you build git-remote-http with no dependencies on libcrypto and libssl?

2014-02-12 Thread dbmccrohan
Hi- I am git noob so please be kind... We are trying to use git as part of our product, and have run into a problem with Red Had 6 systems. Since our IT department only lets developers use RH5.6 systems we didn't find out about this until pretty late in the project. The issue is that git

Re: [git-users] Can you build git-remote-http with no dependencies on libcrypto and libssl?

2014-02-12 Thread Dale R. Worley
From: dbmccro...@gmail.com The issue is that git 1.8.3 has a dependency on libcrypto.so.6 and libssl.so.6. Or more precisely, git-remote-http seems to have dependencies on these libraries. On our RH5.6 boxes, not a problem as they are found in /lib64. On RH6 (kernel version 2.6.32-431),