A bin folder, holding helpfull scripts and commands
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

gitconfig 425B

1234567891011121314
  1. #!/bin/sh
  2. #
  3. git config --global user.name "Dirk Alders"
  4. git config --global user.email dirk@mount-mockery.de
  5. #
  6. git config --global pull.rebase false
  7. #
  8. git config --global diff.tool meld
  9. git config --global merge.tool meld
  10. git config --global merge.tool.cmd 'meld --auto-merge "$LOCAL" "$BASE" "$REMOTE" --output "$MERGED"'
  11. git config --global --add difftool.prompt false
  12. #
  13. git config --global config credential.helper store