11 lines
377 B
Bash
11 lines
377 B
Bash
#!/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
|
|
|
|
echo " ------ OK ------" |