Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. [user]
  2. name = Your Name
  3. #forces git to ask me my email for each repository I check out. Useful when working on multiple clients
  4. email = (none)
  5.  
  6. [color]
  7. ui = auto
  8.  
  9. [alias]
  10. amend = commit --amend -C HEAD
  11. st = status
  12. ci = commit -m
  13. cia = commit -am
  14. co = checkout
  15. br = branch
  16. ps = push
  17. p = pull -r
  18. a = add -A
  19. l = log --graph --abbrev-commit --date=relative
  20. ll = log --graph --abbrev-commit --date=relative --name-status
  21. lp = log --graph --abbrev-commit --date=relative -p
  22. boom = clean -fd
  23. r = reset HEAD
  24.  
  25. [push]
  26. default = simple
  27.  
  28. [format]
  29. pretty=format:%C(yellow)%h%Creset%C(red)%d%Creset %<(44,trunc)%s %Cgreen(%ad) %C(bold blue)%<(10,trunc)%an%Creset
  30.  
  31. [core]
  32. #makes git log and diffs remain on screen after they are printed to console
  33. pager = less -eFRX
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement