9 lines
218 B
Bash
9 lines
218 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Configuration GIT
|
||
|
|
||
|
git config --global user.name "Xavier Logerais"
|
||
|
git config --global user.email "xavier@logerais.com"
|
||
|
git config --global rerere.enabled 1
|
||
|
git config --global merge.conflictstyle diff3
|