9 lines
295 B
Bash
9 lines
295 B
Bash
#!/bin/bash
|
|
|
|
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
|