git and “Server aborted the SSL handshake” errors

后端 未结 5 1264
无人及你
无人及你 2020-12-31 13:47

Often when I want to push to my private repo I get a "Server aborted the SSL handshake" error. After several tries it often suddenly works. I was yet not able to f

5条回答
  •  滥情空心
    2020-12-31 14:14

    git clone https://github.com/torch/distro.git ~/torch --recursive
    

    I have just tried cloning(using the above command) and it worked fine. I see all the submodules are hosted on github.com only. It might be some temporary issue with the SSL certificate at github.com's end.

    Or else, you can try cloning it via SSH if that works for you.

    Sub-modules cloned:

    Submodule 'exe/env' (https://github.com/torch/env.git) registered for path 'exe/env'
    Submodule 'exe/luajit-rocks' (https://github.com/torch/luajit-rocks.git) registered for path 'exe/luajit-rocks'
    Submodule 'exe/qtlua' (https://github.com/torch/qtlua.git) registered for path 'exe/qtlua'
    Submodule 'exe/trepl' (https://github.com/torch/trepl.git) registered for path 'exe/trepl'
    Submodule 'extra/argcheck' (https://github.com/torch/argcheck.git) registered for path 'extra/argcheck'
    Submodule 'extra/audio' (https://github.com/soumith/lua---audio.git) registered for path 'extra/audio'
    Submodule 'extra/cudnn' (https://github.com/soumith/cudnn.torch.git) registered for path 'extra/cudnn'
    Submodule 'extra/cunn' (https://github.com/torch/cunn.git) registered for path 'extra/cunn'
    Submodule 'extra/cunnx' (https://github.com/nicholas-leonard/cunnx.git) registered for path 'extra/cunnx'
    Submodule 'extra/cutorch' (https://github.com/torch/cutorch.git) registered for path 'extra/cutorch'
    Submodule 'extra/fftw3' (https://github.com/soumith/fftw3-ffi.git) registered for path 'extra/fftw3'
    Submodule 'extra/graph' (https://github.com/torch/graph) registered for path 'extra/graph'
    Submodule 'extra/graphicsmagick' (https://github.com/clementfarabet/graphicsmagick.git) registered for path 'extra/graphicsmagick'
    Submodule 'extra/lua-cjson' (https://github.com/mpx/lua-cjson) registered for path 'extra/lua-cjson'
    Submodule 'extra/luaffifb' (https://github.com/facebook/luaffifb) registered for path 'extra/luaffifb'
    Submodule 'extra/luafilesystem' (https://github.com/keplerproject/luafilesystem.git) registered for path 'extra/luafilesystem'
    Submodule 'extra/nn' (https://github.com/torch/nn.git) registered for path 'extra/nn'
    Submodule 'extra/nngraph' (https://github.com/torch/nngraph) registered for path 'extra/nngraph'
    Submodule 'extra/nnx' (https://github.com/clementfarabet/lua---nnx.git) registered for path 'extra/nnx'
    Submodule 'extra/penlight' (https://github.com/stevedonovan/Penlight.git) registered for path 'extra/penlight'
    Submodule 'extra/sdl2' (https://github.com/torch/sdl2-ffi.git) registered for path 'extra/sdl2'
    Submodule 'extra/signal' (https://github.com/soumith/torch-signal.git) registered for path 'extra/signal'
    Submodule 'extra/threads' (https://github.com/torch/threads-ffi.git) registered for path 'extra/threads'
    Submodule 'pkg/cwrap' (https://github.com/torch/cwrap.git) registered for path 'pkg/cwrap'
    Submodule 'pkg/dok' (https://github.com/torch/dok.git) registered for path 'pkg/dok'
    Submodule 'pkg/gnuplot' (https://github.com/torch/gnuplot.git) registered for path 'pkg/gnuplot'
    Submodule 'pkg/image' (https://github.com/torch/image.git) registered for path 'pkg/image'
    Submodule 'pkg/optim' (https://github.com/torch/optim.git) registered for path 'pkg/optim'
    Submodule 'pkg/paths' (https://github.com/torch/paths.git) registered for path 'pkg/paths'
    Submodule 'pkg/qttorch' (https://github.com/torch/qttorch.git) registered for path 'pkg/qttorch'
    Submodule 'pkg/sundown' (https://github.com/torch/sundown-ffi.git) registered for path 'pkg/sundown'
    Submodule 'pkg/sys' (https://github.com/torch/sys.git) registered for path 'pkg/sys'
    Submodule 'pkg/torch' (https://github.com/torch/torch7.git) registered for path 'pkg/torch'
    Submodule 'pkg/xlua' (https://github.com/torch/xlua.git) registered for path 'pkg/xlua'
    

提交回复
热议问题