gitconfig 819 B

1234567891011121314151617181920212223242526
  1. [user]
  2. name = Emilia L.K. Blåsten
  3. email = emilia.blasten@iki.fi
  4. [core]
  5. # editor = emacsclient -t -a emacs
  6. editor = jmacs
  7. [push]
  8. default = matching
  9. [alias]
  10. graph = log --graph --date-order --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
  11. wdiff = diff --color-words
  12. [color]
  13. diff = auto
  14. [color "diff"]
  15. meta = yellow bold
  16. frag = magenta bold
  17. old = red bold
  18. new = green bold
  19. [credential]
  20. helper = cache --timeout=86400
  21. [credential "https://git.overleaf.com"]
  22. helper = "!f() { test "$1" = get && echo "password=$(gpg -q --for-your-eyes-only --no-tty -d ~/.authinfo.gpg | awk '/machine git.overleaf.com/ {print $NF}')"; }; f"