2023-08-15 22:23:40 +02:00
|
|
|
#!/bin/bash
|
|
|
|
echo " ------ installation des configurations pour Git ------"
|
|
|
|
|
|
|
|
git config --global credential.helper 'store'
|
|
|
|
git config --global user.email "contact@cipherbliss.com"
|
|
|
|
git config --global user.name "tykayn"
|
|
|
|
git config --global rerere.enabled true
|
|
|
|
git config --global init.defaultBranch main
|
|
|
|
git config --global checkout.defaultRemote origin
|
2024-01-21 15:01:51 +01:00
|
|
|
|
2023-08-17 10:14:21 +02:00
|
|
|
echo " ------ OK ------"
|