Sometimes when we try to push some changes to the repository git push
can hang and we cannot get any meaningful information. We can check the GitHub status page but when everything is green there what can we do to get more information(applies only for ssh)
- Create script like
~/sshv.sh
#!/bin/bash
ssh -vvv "$@"
Add permissions
chmod u+x ~/sshv.sh
Push to the repo
GIT_SSH=~/sshv.sh git push <rest of your command>
We should see what exactly what ssh is doing.