Git clone / pull continually freezing at “Store key in cache?”

I’m attempting to clone a repo from my BitBucket account to my Windows 10 laptop (running GitBash). I’ve completed all of the steps necessary to connect (set up my SSH key, verified by successfully SSHing [email protected], etc). However, whenever I attempt to clone a repo, the prompt continually hangs up after confirming that I want … Read more

com.jcraft.jsch.JSchException: UnknownHostKey

I’m trying to use Jsch to establish an SSH connection in Java. My code produces the following exception: com.jcraft.jsch.JSchException: UnknownHostKey: mywebsite.com. RSA key fingerprint is 22:fb:ee:fe:18:cd:aa:9a:9c:78:89:9f:b4:78:75:b4 I cannot find how to verify the host key in the Jsch documentation. I have included my code below. import com.jcraft.jsch.JSch; import com.jcraft.jsch.Session; public class ssh { public static … Read more