Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. [alias]
  2. remotes = remote -v
  3. branches = branch -a
  4. tags = tag -l
  5.  
  6. currentbranch = rev-parse --abbrev-ref HEAD
  7. id = rev-parse --short HEAD
  8. lg = log --color --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
  9.  
  10. st = status -sb
  11. co = checkout
  12.  
  13. [color]
  14. ui = auto
  15.  
  16. [core]
  17. excludesfile = ~/.gitignore
  18.  
  19. [push]
  20. default = simple
  21.  
  22. [include]
  23. path = ~/.gitlocal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement