Ajout README 🎉
This commit is contained in:
commit
6f61074a85
1 changed files with 30 additions and 0 deletions
30
README.md
Normal file
30
README.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Configuration des OS
|
||||
## Windows
|
||||
WIP
|
||||
|
||||
## WSL
|
||||
Commande pour lancer mon installation :
|
||||
```bash
|
||||
wget -q --show-progress https://git.kennel.ml/Anri/confOS/raw/branch/main/wsl.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
||||
```
|
||||
|
||||
## Manjaro
|
||||
Commande pour lancer mon installation :
|
||||
```bash
|
||||
wget -q --show-progress https://git.kennel.ml/Anri/confOS/raw/branch/main/manjaro.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
||||
```
|
||||
|
||||
## [outdated] Ubuntu
|
||||
Commande pour lancer mon installation :
|
||||
```bash
|
||||
wget -q --show-progress https://git.kennel.ml/Anri/confOS/raw/branch/main/ubuntu.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
||||
```
|
||||
|
||||
---
|
||||
Détails concernant l'import/export de la clé GPG :
|
||||
- Exporté clé publique : `gpg --output public.gpg --armor --export user@email`
|
||||
- Exporté clé privé : `gpg --output private.gpg --armor --export-secret-key user@email`
|
||||
- Importé clés publique : `gpg --import public.gpg`
|
||||
- Importé clés privé : `gpg --allow-secret-key-import --import private.gpg`
|
||||
- Récupérer numéro de clé (`sec`) : `gpg --list-secret-keys --keyid-format LONG user@email` (dans `sec rsa4096/30F2B65B9246B6CA 2017-08-18 [SC]` c'est `30F2B65B9246B6CA`)
|
||||
- Utilisé clé pour git : `git config --global user.signingkey <numéro de la clé>`
|
Loading…
Reference in a new issue