On Sat, 15 Nov 2014 04:44:19 + (UTC)
Ryan Jacobs wrote:
> $ git push --all --tags
> error: --all and --tags are incompatible
>
> Why are these flags incompatible? Just wondering 'cause I think that
> it would be a good feature to be able to push all of your branches
> and all of your tags to
On Tue, 20 May 2014 18:18:08 +
"Stewart, Louis (IS)" wrote:
> From you response then there is a method to only obtain the Project,
> Directory and Files (which could hold 80 GBs of data) and not the
> rest of the Repository that contained the full overall Projects?
Please google the phrase "
On Tue, 12 Nov 2013 12:02:38 +0400
Лежанкин Иван wrote:
> I get this error message every time I want to do a `git push`.
> git version: 1.8.4.2
>
> Is it a known issue? Do you need additional info to investigate it?
What does
ulimit -n
tells to you when you run it before executing `git push`?
On Thu, 14 Nov 2013 16:58:31 +0400
Лежанкин Иван wrote:
> Do you plan to implement the 64-bit support in git? - Right now I have
> a problems sometimes with a huge repo and renaming detection. If I
> merge more than 32768 files at once, then the renaming detection
> fails, because of limitation
On Thu, 14 Nov 2013 18:55:52 +0400
Лежанкин Иван wrote:
> I hit this limit in file 'diffcore-rename.c':
>
> if (rename_limit <= 0 || rename_limit > 32767)
> rename_limit = 32767;
>
> I just guess, that this limit comes from the O(N^2) complexity of the
> comparison algorithm. Since the
On Fri, 15 Nov 2013 10:40:47 +0100 (CET)
ycollette.nos...@free.fr wrote:
> And the conclusion is ? No bugzilla tool installed because somebody
> want to build a gitbased bugzilla thing ?
Well, no, the real answer is that for those who actually write code and
apply patches, an e-mail based workflo
On Sun, 17 Nov 2013 13:22:40 -0700
Zachary Rodriguez wrote:
> Hello. I am having trouble setting up a git repository on an ftp
> server. The repository is bare and has had several commits made before
> being moved to the ftp server. I am attempting to clone from my ftp
> server, but git fails wit
On Mon, 18 Nov 2013 18:42:26 +0100
Philippe Vaucher wrote:
[...]
> When they understand git reasonably (or if they are not lazy people
> and willing to learn), then show them full integrations like
> TortoiseGit (or probably the Netbeans plugin), which are nice when
> everything works but you hav
On Wed, 27 Nov 2013 15:17:27 +
Pete Forman wrote:
> I am looking for a way of detecting up front whether a git pull or git
> merge would fail. The sort of script I want to perform is to update a
> server.
>
> git fetch
> git okay
> stop server
> backup data
> git merge
>
On Fri, 6 Dec 2013 18:51:47 +0200
Muzaffer Tolga Ozses wrote:
> On another git server, I get reports like
> Cloning into 'tcmb'...
> remote: Counting objects: 704, done.
> remote: Compressing objects: 100% (574/574), done.
> remote: Total 704 (delta 369), reused 107 (delta 60)
> Receiving objects
On Fri, 6 Dec 2013 21:00:35 +0400
Konstantin Khomoutov wrote:
[...]
> > Resolving deltas: 100% (369/369), done.
> >
> > whereas I don't get those with my own. What could I be doing wrong?
>
> The documentation on `git push` states:
>
> --progress
>
&g
On Fri, 6 Dec 2013 19:44:21 +0200
Muzaffer Tolga Ozses wrote:
[...]
> >> > Resolving deltas: 100% (369/369), done.
> >> >
> >> > whereas I don't get those with my own. What could I be doing
> >> > wrong?
[...]
> >> So it might turn out on your own server Git for some reason fails
> >> to figure o
On Fri, 27 Dec 2013 18:59:00 +0600
Sergey Sharybin wrote:
> Quick question is, is it possible to use git:// protocol over
> SSL/TLS/other secure transport?
The Git protocol does not implement it itself but you can channel it
over a TLS tunnel (via stunnel for instance). Unfortunately, this
mean
On Fri, 27 Dec 2013 19:58:19 +0600
Sergey Sharybin wrote:
[...]
> > Yes, but it will only be secure if you've managed to verify the
> > server's certificate and do trust its issuer (or a CA higher up the
> > cert's trust chain) -- people tend to confuse "encrypted" with
> > "secure" which is not
On Fri, 27 Dec 2013 15:12:07 +0100
Andreas Schwab wrote:
> > So guess we just need to recommend using https:// protocol instead
> > of git:// for our users?
>
> Given how easy it is to verify the integrity of a git repository out
> of band there isn't really much of added security by using TLS f
On Fri, 27 Dec 2013 20:25:16 +0600
Sergey Sharybin wrote:
> Security in this case is about being sure everyone gets exactly the
> same repository as stored on the server, without any modifications to
> the sources cased by MITM.
>
> As for "smart" http, this seems pretty much cool.However, we're
On Fri, 27 Dec 2013 20:47:54 +0600
Sergey Sharybin wrote:
[...]
> > As discussed in an earlier thread here, a good indication of the
> > dumb version of the protocol being in use is no display of the
> > fetching progress on the client while doing `git clone` because this
> > information (like "c
On Thu, 4 Dec 2014 10:06:23 +0100
Guilherme wrote:
> I reported this issue on the git-user mailing list and they
> redirected me here.
>
> The problem I have observed is that with a ignored path `git add
> ` behaves differently then `git add `.
[...]
To those who's interested the original threa
On Wed, 17 Dec 2014 01:09:08 +0630
Arup Rakshit wrote:
[...]
> But I am looking for any differences -
>
> a) git reset --soft and git reset --keep
> b) git reset --hard and git reset --merge
Please consider reading
http://git-scm.com/book/en/v2/Git-Tools-Reset-Demystified
--
To unsubscribe from
On Thu, 5 Sep 2013 14:43:52 -0700 (PDT)
Eyal Zinder wrote:
[...]
> The problem I faced later on was in parallel development, when
> changes were made to a file in one repository, and at the same time
> other changes made to the same file in another repository.. I
> couldh't push changes from the
On Thu, 5 Sep 2013 21:27:14 -0500
Tim Chase wrote:
[...]
> Do any git users here have good "understanding Mercurial branches
> for the git user" resources they've found helpful when working with
> Mercurial? Preferably a "for dummies" resource with illustrations &
> comparison charts so I can se
On Wed, 08 Apr 2015 23:58:58 +0200
Thomas Braun wrote:
[...]
> > I am trying to run the latest git 1.9.5 installer on windows. When I
> > run strings on libneon-25.dll it shows this:
> >
> > ./libneon-25.dll:OpenSSL 1.0.1h 5 Jun 2014
> >
> > But when I load this dll in dependency wa
On Sun, 12 Apr 2015 19:51:29 +0200
Johannes Schindelin wrote:
[...]
> > * it is talking german to me
> >
> > would it be sufficient to delete
> > c:\Apps\gitwin\mingw64\share\locale\de\LC_MESSAGES\
> > resp the whole locale directory to let it speak english?
>
> Probably. But the canonical solu
On Wed, 27 May 2015 17:28:34 -0700
Stefan Beller wrote:
> so I just run into this problem again (which happens to me maybe
> twice a week): I want to do a git operations, so I type "git " into
> my shell,
[...]
> then I copy the whole operation "git revert --abort" in this case and
> paste it to
On Tue, 9 Jul 2013 20:30:37 -0500
Chanakya Vattikuti wrote:
> I get this error message when trying to create a shared ssh key in
> Mac osx Lion
This problem has nothing to do with Git as it purely is about
transferring a public part of your SSH key to another host.
So try asking on the OS suppor
On Wed, 24 Jul 2013 16:46:46 +0400
Konstantin Konovalov wrote:
> During reading the online book (http://git-scm.com/book/ru - russian
> translation) I found some bugs.
[...]
Please report them at https://github.com/github/gitscm-next/issues
--
To unsubscribe from this list: send the line "unsubs
On Thu, 25 Jul 2013 15:19:48 +0300
иванов иван wrote:
> hello! there is problem vith git and cyrillic (utf-8) names of
> branches. branch creates perfectly, but when i clone this remote
> branch to local host, there are 2 bugs:
> 1) "git branch" doesnt show checked branch with asterisk (while on
On Thu, 25 Jul 2013 17:06:41 +0400
ксовиран wrote:
> >> hello! there is problem vith git and cyrillic (utf-8) names of
> >> branches. branch creates perfectly, but when i clone this remote
> >> branch to local host, there are 2 bugs:
> >> 1) "git branch" doesnt show checked branch with asteri
On Thu, 25 Jul 2013 18:51:57 +0400
ксовиран wrote:
[...]
> > I'm afraid, this might be not that simple: Git received certain
> > tweaks to work around certain problems Mac OS X has (as I
> > understand it) with handling UTF-8 on various filesystems it
> > supports; in particular, see commits
[...
On Thu, 25 Jul 2013 18:51:57 +0400
ксовиран wrote:
[...]
> > I'm afraid, this might be not that simple: Git received certain
> > tweaks to work around certain problems Mac OS X has (as I
> > understand it) with handling UTF-8 on various filesystems it
> > supports; in particular, see commits
> >
On Thu, 25 Jul 2013 19:33:16 -0700
Gulshan Singh wrote:
> I've been trying to figure out why I can't push from a shallow clone
> (using --depth) to a repository. I've made simple examples where it
> works, but I've read that in doesn't work in every case. However, I
> can't come up with a case wh
On Fri, 26 Jul 2013 16:21:28 +0200
Muhammad Bashir Al-Noimi wrote:
> > I want to use Git over the local network in our company because the
> > internet connection isn't stable so I wonder how can I use git with
> > pull request (similar to Github)?
Depends on what feature set you imply when yo
On Mon, Nov 05, 2012 at 12:04:06PM -0800, hong zhang wrote:
> Could anyone explain how the git commit ID will include all the files
> that devloper makes changes on?
>
> How git commit ID works?
To expand on the answer provided by Magnus, I would also suggest reading
the classic "Git from the bo
On Mon, Nov 05, 2012 at 09:21:13AM -0800, Mathieu Dutour wrote:
First, note that this list is a support channel for Git newbies, and
your question appears to be more about Git source code itself so I'd say
it better fits the main Git list which is git at vger.kernel.org.
I Cc'ed this my response h
On Thu, 8 Nov 2012 08:26:22 -0600
"McKown, John" wrote:
> 1) is this the proper forum for asking general git usage questions,
> such as "how to"? If not, what is?
This list is okay for the general usage questions.
But since it's the place where the development questions are discussed
as well, an
On Mon, 26 Nov 2012 04:55:10 +
Carl Smith wrote:
> After suggesting using zip files to move our projects around, I was
> told that you can not zip a git repo without loosing all the history.
> This didn't make sense to me, but two people told me the same thing,
> so I wasn't sure. I think the
On Tue, 08 Jan 2013 08:46:21 -0500
gw1500 wrote:
> As a git noobie I am beginning get get my head around git's version
> control philosophy. I am now trying to understand the purposes of
> branches or rather when to use them. In my case I have a Java
> application under version control with git.
On Fri, 11 Jan 2013 11:30:01 +0400
Ishayahu Lastov wrote:
[...]
> As I understand after last "git checkout" in "git status" I should see
> that I gave no changes. It looks like an bug, isn't it?
Looks like an EOL-conversion problem rather typical to Windows, see
http://stackoverflow.com/a/201642
On Wed, 16 Jan 2013 17:49:09 +
"Lang, David" wrote:
> We're just in the process of investigating a versioning tool and are
> very interesting in git. We have one question we're hoping someone
> can answer. In regards to the repositories, I think I understand
> correctly that each developer wi
On Wed, 16 Jan 2013 10:21:56 -0800
Jeff King wrote:
Thanks for elaborating on the "origin" -- I intended to write up on its
special status but got distracted and sent my message missing that
bit ;-)
[...]
> > > Ideally we'd prefer to simply create our remote repository on a
> > > drive of one of
On Tue, 28 May 2013 15:42:57 +0800 (SGT)
Quark wrote:
> > I have been using git-svn in an corporate environment where svn
> > repo has lot of branches, (lot means > 100). To avoid cloning all
> > branches my config looks as below
[...]
> is this not right forum?
As a matter of fact, this mailing
On Mon, 17 Jun 2013 13:28:30 +
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_architec
On Mon, 17 Jun 2013 17:47:07 +0400
Konstantin Khomoutov 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 s
On Wed, 27 Mar 2013 11:39:31 -0500
Jim Kinsman wrote:
> git status takes 30 seconds on Windows 7. Here are some stats:
[...]
> What can I do??? This is so slow it is unbearable.
> By the way i've done git gc several times and nothing changed.
You could try some voodoo [1] or experimental caching
On Thu, 11 Apr 2013 07:49:44 +0100
João Joyce wrote:
[...]
> but I am getting the following error:
> git send-pack: protocol error: bad band #50
> fatal: The remote end hung up unexpectedly
>
> It seems that something is failing on the remote side but I can't
> find any reference to t
On Thu, 11 Apr 2013 15:50:31 +0530
Sivaram Kannan wrote:
[...]
> Output of coredump gdb:
>
> gitadmin@gitserver:/var/crash/dump$ gdb git CoreDump
> GNU gdb (Ubuntu/Linaro 7.4-2012.04-0ubuntu2.1) 7.4-2012.04
> Copyright (C) 2012 Free Software Foundation, Inc.
> License GPLv3+: GNU GPL version 3 o
On Fri, 12 Apr 2013 18:58:24 +0530
Sivaram Kannan wrote:
> > ^^^ Try to issue the
> >
> > $ ulimit -c unlimited
>
> Have set the git user's crash limit to 1GB in
> /etc/security/limits.conf and still getting the same error when
> issuing gdb to the crash file.
Yep, suppsedly in Ubuntu it's not
On Wed, 17 Apr 2013 13:14:48 +0400
Ivan Lyapunov wrote:
> netbeans use some integrated git wrapper and I don't know about JGit
> source base or not. In Eclipse we use Egit. Also all broken commits
> limited to november 2012, but we still continue to use the same
> development environments without
The git-clone manual page, both [1] and my local copy coming with
Git for Windows 1.8.1, say about the --depth command-line option:
--depth
Create a shallow clone with a history truncated to the specified
number of revisions. A shallow repository has a number of
limitations (yo
On Thu, 18 Apr 2013 13:52:33 +0400
Konstantin Khomoutov wrote:
> The git-clone manual page, both [1] and my local copy coming with
> Git for Windows 1.8.1, say about the --depth command-line option:
[...]
Oops, by [1] I wanted to refer to this version:
https://www.kernel.org/pub/softwa
On Thu, 18 Apr 2013 15:46:12 -0700
Junio C Hamano wrote:
> "Philip Oakley" writes:
>
> >> So I observe pushing/fetching works OK at least for a simple case
> >> like this one.
> >>
> >> Hence I'd like to ask: if the manual page is wrong or I'm observing
> >> some corner case?
> >> --
> > The ma
I maintain a local wiki at my $dayjob which contains a page dedicated
to Git which, among other things, liks to various useful bits of
information on the internets.
Recently I discovered that a number of useful articles which sort of
accompanied the "Pro Git" book are now inaccessible (404), namel
On Wed, 1 May 2013 14:38:02 -0400
Jeff King wrote:
[...]
> > Recently I discovered that a number of useful articles which sort of
> > accompanied the "Pro Git" book are now inaccessible (404), namely:
> > "Smart HTTP Transport" [1], "Reset Demystified" [2], "Note to
> > Self" [3] and "Git Loves t
On Mon, 27 Aug 2012 15:32:40 +0100
Aaron Gray wrote:
> Is there anyway to get my git repository as a single file ?
Depends on what you really need.
If you need to export the repository *history* of one or more
references (branches or tags), use `git bundle` to create a
specially-formatted file w
On Mon, 3 Sep 2012 11:21:43 +0100 (BST)
Mark Hills wrote:
> How do I clone a repo _to_ a new repo over SSH? I tried:
>
> cd xx
> git clone --bare . gitserver:/scm/xx.git
> git clone --bare . ssh://gitserver/scm/xx.git
>
> This does not have the expected result, and instead a local path of
On Mon, 3 Sep 2012 14:07:48 +0100 (BST)
Mark Hills wrote:
[...]
> > But I'm actually more curious about why you need this in the first
> > place, there's a bunch of devs where I work as well, but they never
> > have the need to create new repos on some NFS drive in this manner.
>
> Without a com
On Sun, Sep 16, 2012 at 03:19:25AM +, ankush_aggar...@dell.com wrote:
> I have created a GIT repository on Linux 64 bit machine.
>
> When I tried to clone GIT repository on windows 7 machine then I am getting
> below error.
>
> Error:
> git-upload-pack: error while loading shared libraries
On Fri, Sep 21, 2012 at 01:02:11PM -0600, Joshua Jensen wrote:
> We've been running with core.autocrlf = input (some people with
> core.autocrlf = true). However, there are some text files in the
> repository that are CRLF, and I am at a loss to explain how they go
> here.
>
> We understand that
On Fri, 5 Oct 2012 14:13:49 +0400
Муковников Михаил wrote:
> There's a problem using git with files having cyrillic 'й' in their
> name, git just can't track them.
>
> uname: Darwin 12.2.0 Darwin Kernel Version 12.2.0: Sat Aug 25
> 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64 x86_64 g
: Re: [git-users] How do I git-push to an FTP server?
Den fredagen den 5:e oktober 2012 kl. 11:38:43 UTC+2 skrev Konstantin
Khomoutov:
>
> On Fri, 5 Oct 2012 01:24:21 -0700 (PDT)
> August Karlstrom > wrote:
>
> > I get the following error when I run `git push' in a reposito
On Fri, 5 Oct 2012 15:46:33 +0200
Philippe Vaucher wrote:
> > On the git-users mailing list we're trying someone to help with
> > running `git push` over FTP. That person is runnig Git 1.7.9.5
> > on Ubuntu 12.04.
>
> I don't think vanilla git supports pushing over ftp.
>
> There are plugins l
On Mon, 29 Oct 2012 09:52:54 -0700 (PDT)
Kevin Molcard wrote:
> I have a problem with my build system.
>
> I have a remote server with a relatively large repository (around 12
> GB, each branch having a size of 3 GB).
>
> I have also 2 build servers (Mac, Windows) that are cloning the repo
> f
On Fri, 2 Nov 2012 18:39:26 +0400
Kirill Likhodedov wrote:
> Currently, core.ignorecase is set to true on case insensitive system
> like Windows or Mac on `git init` and `git clone`, and this setting
> is local to the created/cloned repository.
[...]
> I suggest to set this globally by default wh
On Fri, 2 Nov 2012 19:03:37 +0400
Konstantin Khomoutov wrote:
> > Currently, core.ignorecase is set to true on case insensitive system
> > like Windows or Mac on `git init` and `git clone`, and this setting
> > is local to the created/cloned repository.
> [...]
> > I s
On Sun, Jul 08, 2012 at 02:12:46AM -0700, pbGit wrote:
> I have installed git locally to my machine. It is running mac os lion.
> This is intended to be the remote machine too. I have followed, what I think
> is the correct way to do this, using
> http://www.petermac.com/setup-git-local-and-r
On Sun, Jul 08, 2012 at 01:52:03PM +0200, Holger Hellmuth wrote:
>>http://www.petermac.com/setup-git-local-and-remote-repositories/ this . All
>
> The recipe at this address seems to have a "--bare" parameter
> missing at the git init in step 7
The OP stated that «This is intended to be the remo
On Mon, 09 Jul 2012 13:57:09 +0200
Jimmy Thrasibule wrote:
> I have a core project on which I maintain a set of patches using
> Quilt. This allows me to make changes to the project without touching
> the files so I can upgrade to new versions easily.
>
> I keep my patches and the core project in
On Thu, 19 Jul 2012 18:21:21 +0200
Alexey Muranov wrote:
[...]
> I do not still understand very well some aspects of Git, like the
> exact purpose of "remote tracking branches" (are they for pull or for
> push?), so i may be wrong.
This is wery well explained in the Pro Git book, for instance.
An
On Fri, 20 Jul 2012 12:26:09 -0300
Thiago Farina wrote:
> How can I push a working branch to github inside it?
>
> E.g:
>
> # On master:
> $ git checkout -b feature-work
>
> # On feature-work
> # vi, hack, commit, ready to push
> $ git push origin master # here I expected it would working push
On Tue, Jul 31, 2012 at 08:36:07AM +0530, vishwajeet singh wrote:
> Just wanted to know the difference between smart http and ssh and in
> what scenarios we need them
> I am setting up a git server, can I just do with smart http support
> or I need to enable the ssh support to use git effectively
On Tue, 31 Jul 2012 14:02:50 +0200
"Manuela Hutter" wrote:
> we have some python scripts that are run from Visual Studio, and one
> of them fails because of a wrong git return code when calling
> 'git describe --dirty'
[...]
> Run from wingw, the return code is 0.
> Run from cmd, the return code
On Thu, 16 Aug 2012 07:11:28 -0600
"J.V." wrote:
> We have a central/shared bare repo setup on a Linux box by our
> scc/build team.
>
> Each developer pulls/pushes to this repo. I have two windows boxes
> where I have cloned the repo. I want to commit and then on my second
> windows box pull
On Fri, 25 Jan 2013 14:50:24 +0100
Mario Michael Krell wrote:
> In your documentation you say, that git should be installed on Unix
> using
>
> apt-get install git-core
Note that Ubuntu is not Unix.
> Unfortunately it tells the user, that this package is obsolete and
> "git" should be used ins
On Sun, Feb 03, 2013 at 03:18:05PM +0100, Robert Clausecker wrote:
> git currently has the archive command that allows to save an arbitrary
> revision into a tar or zip file. Sometimes it is useful to not save this
> revision into an archive but to directly put all files into an arbitrary
> direct
On Sun, Feb 10, 2013 at 04:00:56PM -0500, Ethan Reesor wrote:
> I'm looking to make a command to push a git repo to a new server. The
> way I just did it is as follows:
>
> localhost> git clone --bare /path/to/MyRepo /path/to/tmpdir/MyRepo.git
> localhost> tar xz /path/to/tmpdir/MyRepo.git | ssh
On Mon, 11 Feb 2013 02:57:51 -0500
Ethan Reesor wrote:
[...]
> I want to create a git-command that 1) creates a bare version of the
> current repo, 2) and uploads it to the specified path on my server
> (using tar, but that's not the point).
Thanks, it's now a bit more clear.
> My problem is th
On Wed, 13 Feb 2013 14:01:36 +0100
"amccl...@gmail.com" wrote:
> I have problem with git svn init:
> When I execute
> git svn init svn+ssh://usern...@example.com/path/repo
> I see:
> fatal: Not a git repository (or any of the parent directories): .git
> Already at toplevel, but .git not found
>
On Thu, 21 Feb 2013 09:48:36 +
James French wrote:
> I wonder if someone could help me. I installed git on a Mac and then
> I copied the install somewhere else (which I do want to do, trust
> me). I'm now having trouble with git svn. I'm getting "Can't locate
> Git/SVN.pm in @INC..."
>
> I'
On Thu, 7 Mar 2013 00:01:31 -0800 (PST)
Aleksey Rozhkov wrote:
> The page http://git-scm.com/book/ru/
> Введение-Первоначальная-настройка-Git contains incorrect link "next"
> Now this link to the page
> http://git-scm.com/book/ru/Введение-Как-получить-помощь? , but this
> page does not exist
I
On Tue, 12 Mar 2013 14:22:00 +0100
Jan Pešta wrote:
> I have a question if there is a posibility tu update a branch which
> is not actual working copy.
>
> I have following situation:
>
> A - B - C - I - J master
>\ - D - E - F feature 1
>
On Fri, 15 Mar 2013 13:44:15 +0100
Fredrik Gustafsson wrote:
[...]
> The webgui that's most populair is cgit and git-web. They don't do ACL
> afaik.
gitweb passes around branch names using a specific parameter in the
GET queries it operates on, like
http://gitweb.domain.local/?p=repo.git;a=short
On Fri, 15 Mar 2013 11:05:11 +0100
Kristof Mattei wrote:
> We're having issues with the version of SSH included in git version
> 1.8.1.msysgit.1 (Git-1.8.1.2-preview20130201.exe)
>
> The included version of SSH is from 2007:
>
> C:\Program Files (x86)\Git\bin - Old>ssh -V
> OpenSSH_4.6p1, OpenS
On Sun, Mar 17, 2013 at 10:03:37PM -0600, zero modulo wrote:
> $ LDFLAGS="-L/sandbox/builds/lib" CPPFLAGS="-I/sandbox/builds/include"
> ./configure --prefix=$PREFIX
>
> $ make
> […]
> /sandbox/builds/lib/libcrypto.a(dso_dlfcn.o): In function
> `dlfcn_globallookup':
> dso_dlfcn.c:(.text+0x1b): un
101 - 183 of 183 matches
Mail list logo