I use a GPG key to sign my git commits.
An error like this one might be a sign of an expired GPG key.
error: gpg failed to sign the data fatal: failed to write commit object
| #!/bin/bash | |
| # Revert outbound traffic back to original ip. Call script with the original ip address of droplet | |
| NET_INT="eth0" | |
| CURL_TIMEOUT=3 | |
| if [ "$1" == "" ]; then | |
| echo "Original IP of droplet not given." | |
| exit 1 | |
| fi |