Github, gitにProxy設定。

gitProxyを設定。

git config --global http.proxy http://proxy.hogehoge.com:8080
git config --global https.proxy http://proxy.hogehoge.com:8080

これで~/.gitconfigに下記が追加。

cat .gitconfig
[http]
        proxy = http://proxy.hogehoge.com:8080
[https]
        proxy = http://proxy.hogehoge.com:8080

``git```したらエラーがでた。

[179:~]>git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
Cloning into '/home/username/.vim/bundle/neobundle.vim'...
fatal: unable to access 'https://github.com/Shougo/neobundle.vim/': error setting certificate verify locations:
  CAfile: /usr/ssl/certs/ca-bundle.crt
  CApath: none

再度次のパッケージを更新すればいいらしいとのこと。

pacman -S ca-certificates

下記で助けられた。

qiita.com