WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: git.tcz  (Read 4117 times)

Offline polikuo

  • Hero Member
  • *****
  • Posts: 714
git.tcz
« on: April 13, 2017, 10:21:19 PM »
for x86_64:
Code: [Select]
cat git.tcz.dep
curl.tcz
Missing expat2.tcz
Please fix.

for x86:
Code: [Select]
tc@box:~$ git clone https://github.com/polikuo/tc-install.git
Cloning into 'tc-install'...
fatal: unable to access 'https://github.com/polikuo/tc-install.git/': error setting certificate verify locations:
  CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: none

CApath: none
What's that  ???

booting both 8.0 TC with bootcode base

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: git.tcz
« Reply #1 on: April 13, 2017, 11:45:38 PM »
x86_64 git dep file adjusted - thanks for reporting this.

the x86 version of curl needs recompiling with "--with-ca-bundle=/usr/local/etc/ssl/certs/ca-certificates.crt" - in the meantime, this will fix it:
Code: [Select]
$ sudo ln -s /usr/local/etc/ssl /etc/ssl

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: git.tcz
« Reply #2 on: April 14, 2017, 12:06:05 AM »
Also, https clones are read-only, you should use the git:// ssh url for a read-write clone.
The only barriers that can stop you are the ones you create yourself.

Offline polikuo

  • Hero Member
  • *****
  • Posts: 714
Re: git.tcz
« Reply #3 on: April 14, 2017, 02:03:17 AM »
the x86 version of curl needs recompiling with "--with-ca-bundle=/usr/local/etc/ssl/certs/ca-certificates.crt" - in the meantime, this will fix it:
Code: [Select]
$ sudo ln -s /usr/local/etc/ssl /etc/ssl

Got it  :)

Also, https clones are read-only, you should use the git:// ssh url for a read-write clone.

Code: [Select]
tc@box:~$ git clone git@github.com:polikuo/tc-install.git
Cloning into 'tc-install'...
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Did I do something wrong  ???

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: git.tcz
« Reply #4 on: April 14, 2017, 10:43:48 AM »
You SSH key is not allowed into your github account.
The only barriers that can stop you are the ones you create yourself.