ignore confirmation+end fork
This commit is contained in:
parent
1e2e92bc21
commit
fa248d3d68
2 changed files with 5 additions and 5 deletions
|
@ -6,11 +6,11 @@
|
||||||
- Export clé privé : `gpg --output private.gpg --armor --export-secret-key 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 publique : `gpg --import public.gpg`
|
||||||
- Import clés privé : `gpg --allow-secret-key-import --import private.gpg`
|
- Import clés privé : `gpg --allow-secret-key-import --import private.gpg`
|
||||||
- Avoir le numéro de la clé (`sec`) : `gpg --list-secret-keys --keyid-format LONG user@email` (dans `sec rsa4096/30F2B65B9246B6CA 2017-08-18 [SC]` c'est `30F2B65B9246B6CA`)
|
- Fetch key number (`sec`) : `gpg --list-secret-keys --keyid-format LONG user@email` (dans `sec rsa4096/30F2B65B9246B6CA 2017-08-18 [SC]` c'est `30F2B65B9246B6CA`)
|
||||||
- Utiliser cette clé pour Git : `git config --global user.signingkey <numéro de la clé>`
|
- Use this key for Git : `git config --global user.signingkey <numéro de la clé>`
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
Run this command to use my configuration (feel free to custom it btw)
|
Run this command to use my configuration (feel free to custom it btw) :
|
||||||
```bash
|
```bash
|
||||||
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installGlobalScript.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
wget -q --show-progress https://git.kennel.ml/Anri/manjaroConfiguration/raw/branch/main/installation.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# == Basic dev ==
|
# == Basic dev ==
|
||||||
sudo pacman -S base-devel
|
sudo pacman -S base-devel --noconfirm
|
||||||
|
|
||||||
# === Yay ===
|
# === Yay ===
|
||||||
sudo pacman -S yay --noconfirm
|
sudo pacman -S yay --noconfirm
|
||||||
|
|
Reference in a new issue