8 lines
229 B
Plaintext
8 lines
229 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
git config --global user.name "Dirk Alders"
|
||
|
git config --global user.email dirk@mount-mockery.de
|
||
|
#
|
||
|
git config --global diff.tool meld
|
||
|
git config --global merge.tool meld
|
||
|
git config --global --add difftool.prompt false
|