Advertisement
britodfbr

.gitconfig-20250612

Jun 12th, 2025 (edited)
746
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [alias]
  2.     co = checkout
  3.     br = branch
  4.     ci = commit
  5.     st = status
  6.     ls = log --stat
  7.     lg = log --graph --oneline --decorate --all
  8.     lsg = log --stat --graph
  9.     pt = !git tag -l | xargs git tag -d && git fetch -t
  10.     stash-unapply = !git stash show -p | git apply -R
  11.     aliases = config --get-regexp alias
  12. [credential "https://git.exemple.com"]
  13.     provider = generic
  14. [safe]
  15.     directory = E:/
  16.     directory = E:/others/ojs-3-2-1-4
  17.     directory = %(prefix)///wsl.localhost/Ubuntu/home/user/projetos
  18.     directory = %(prefix)///wsl.localhost/Ubuntu/home/user/projetos
  19. [user]
  20.     name = [Your Name]
  21.     email = [Your Email]
  22. [http]
  23.     sslVerify = false
  24. [credential]
  25.     helper = store
  26. [gc]
  27.     reflogExpire = 12.months.ago
  28. [apply]
  29.     whitespace = nowarn
  30. [core]
  31.     whitespace = nowarn
  32. [color]
  33.     diff = auto
  34.     status = auto
  35.     interactive = auto
  36.     branch = auto
  37. [status]
  38.     short = true
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement