After migrating to a new 64 bit GNU/Linux distro, I tried to push some commits in my local repository to github. But it fails silently.
git push origin master --verbose --progress
This prints the following line. and simply exit silently.
Pushing to https://github.com/myrepository.git
It is not asking me, username and password as it used to do before. It does not even give any error. The exit code is 128.
echo $?
128
Does git has any log somewhere, which i can look into to see what went wrong? Where do i start troubleshooting this?
Update:
I should have checked the dmesg output earlier!. Following is what i found in it.
[17612.051408] git-remote-http[14249]: segfault at 7f5ce16e2630 ip 00007f5ce16c1df9 sp 00007fff863bd660 error 7 in libcrypto.so.1.0.0[7f5ce15ef000+1b1000]
Looks like the problem is in that library, i shall try to recompile that library again.