Guest User

Untitled

a guest
Jan 24th, 2018
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. ; create or overwrite ~/.gitconfig
  2. ; with the contents of this file
  3.  
  4. [user]
  5. name = Firstname Lastname
  6. email = email@domain.com
  7. [core]
  8. whitespace = tabwidth=4
  9. [push]
  10. ; makes push more intuitive
  11. default = tracking
  12. [alias]
  13. s = status
  14. sl = stash list
  15. sp = stash pop
  16. sb = show-branch
  17.  
  18. ; submodules
  19. sm = submodule
  20. sms = submodule status --recursive
  21.  
  22. ; gitk-like history
  23. l = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
  24. [gc]
  25. ; keep git clean
  26. auto = 100
Add Comment
Please, Sign In to add comment