Fix git SSL certificate problem

When you face “git clone“ error like this:

  1. # git clone https://github.com/NanXiao/FreeBSD-101-Hacks.git
  2. Cloning into 'FreeBSD-101-Hacks'...
  3. fatal: unable to access 'https://github.com/NanXiao/FreeBSD-101-Hacks.git': SSL certificate problem: certificate is not yet valid

The simplest solution may be just disable SSL verification:

  1. # git config --global http.sslVerify false

Reference:
SSL certificate rejected trying to access GitHub over HTTPS behind firewall.