How Can I Resolve:“can not open 'git-upload-pack' ” error in eclipse?

前端 未结 12 820
半阙折子戏
半阙折子戏 2020-12-25 13:00

I am building an android app with the facebook api and I need to import the facebook android sdk. When I want to import this file from github it throws the ..\"can not list

12条回答
  •  既然无缘
    2020-12-25 13:13

    to fix SSL issue you can also try doing this.

    Download the NetworkSolutionsDVServerCA2.crt from the bitbucket server and add it to the ca-bundle.crt

    ca-bundle.crt needs to be copied from the git install directory and copied to your home directory

    cp -r git/mingw64/ssl/certs/ca-bundle.crt ~/

    then do this. this worked for me cat NetworkSolutionsDVServerCA2.crt >> ca-bundle.crt

    git config --global http.sslCAInfo ~/ca-bundle.crt

    git config --global http.sslverify true

提交回复
热议问题