Added command to configure git
This commit is contained in:
parent
aef8db3580
commit
26a7da0328
|
|
@ -0,0 +1,10 @@
|
|||
Command to configure git to accept the self signed certificate
|
||||
|
||||
```bash
|
||||
curl -k https://git.fritz.box/Patrick/gitea-git-config/raw/branch/main/git-cert.pem > $HOME/.git.certs.pem
|
||||
git config --global http.sslCAInfo $HOME/.git.certs.pem
|
||||
```
|
||||
Or as one command:
|
||||
```bash
|
||||
curl -k https://git.fritz.box/Patrick/gitea-git-config/raw/branch/main/git-cert.pem > $HOME/.git.certs.pem && git config --global http.sslCAInfo $HOME/.git.certs.pem
|
||||
```
|
||||
Loading…
Reference in New Issue