Changeset 874fec7f for general/prog


Ignore:
Timestamp:
02/15/2012 04:30:29 PM (12 years ago)
Author:
Andrew Benton <andy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
220dad7
Parents:
800f6b1
Message:

curl-7.24.0

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@9413 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/git.xml

    r800f6b1 r874fec7f  
    145145      <xref linkend="subversion"/> and its perl bindings.</para>
    146146
    147       <para>To be able to use git to pull from a https source you need to tell
    148       it where the ssl certificates are. To install the SSL certificate bundle,
    149       see <xref linkend="curl"/>. To set the location of the SSL certificate
    150       bundle for all users, as the
     147      <para>To be able to use git to pull from a https source you need first
     148      install the <xref linkend="cacerts"/> and then configure git to know where
     149      they are. To set the location of the SSL certificates for all just the
     150      current user:</para>
     151
     152<screen><userinput>git config --global http.sslCAPath /etc/ssl/certs</userinput></screen>
     153
     154      <para>Alternatively, to define http.sslCAPath  for all users, as the
    151155      <systemitem class="username">root</systemitem> user:</para>
    152156
    153 <screen role="root"><userinput>git config --system http.sslcainfo /etc/ssl/certs/ca-bundle.crt</userinput></screen>
    154 
    155       <para>Alternatively, to define http.sslcainfo only for yourself:</para>
    156 
    157 <screen><userinput>git config --global http.sslcainfo /etc/ssl/certs/ca-bundle.crt</userinput></screen>
     157<screen role="root"><userinput>git config --system http.sslCAPath /etc/ssl/certs</userinput></screen>
    158158    </sect3>
    159159  </sect2>
Note: See TracChangeset for help on using the changeset viewer.