You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/bin/sh
CERT="$(git config http.sslcert 2> /dev/null)" KEY="$(git config http.sslkey 2> /dev/null)"
exec /usr/bin/curl \ ${KEY:+--key "$KEY"} \ ${CERT:+--cert "$CERT"} \ "$@"
|