A bin folder, holding helpfull scripts and commands
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
1234567891011121314 |
- #!/bin/sh
- #
- git config --global user.name "Dirk Alders"
- git config --global user.email dirk@mount-mockery.de
- #
- git config --global pull.rebase false
- #
- git config --global diff.tool meld
- git config --global merge.tool meld
- git config --global merge.tool.cmd 'meld --auto-merge "$LOCAL" "$BASE" "$REMOTE" --output "$MERGED"'
- git config --global --add difftool.prompt false
- #
- git config --global config credential.helper store
|