Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. core.excludesfile=~/.gitignore
  2. core.legacyheaders=false
  3. core.quotepath=false
  4. core.pager=less -r
  5. mergetool.keepbackup=true
  6. push.default=simple
  7. color.ui=auto
  8. color.interactive=auto
  9. repack.usedeltabaseoffset=true
  10. alias.s=status
  11. alias.a=!git add . && git status
  12. alias.au=!git add -u . && git status
  13. alias.aa=!git add . && git add -u . && git status
  14. alias.c=commit
  15. alias.cm=commit -m
  16. alias.ca=commit --amend
  17. alias.ac=!git add . && git commit
  18. alias.acm=!git add . && git commit -m
  19. alias.l=log --graph --all --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'
  20. alias.ll=log --stat --abbrev-commit
  21. alias.lg=log --color --graph --pretty=format:'%C(bold white)%h%Creset -%C(bold green)%d%Creset %s %C(bold green)(%cr)%Creset %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
  22. alias.llg=log --color --graph --pretty=format:'%C(bold white)%H %d%Creset%n%s%n%+b%C(bold blue)%an <%ae>%Creset %C(bold green)%cr (%ci)' --abbrev-commit
  23. alias.d=diff
  24. alias.master=checkout master
  25. alias.spull=svn rebase
  26. alias.spush=svn dcommit
  27. alias.alias=!git config --list | grep 'alias.' | sed 's/alias.([^=]*)=(.*)/1 => 2/' | sort
  28. include.path=~/.gitcinclude
  29. include.path=.githubconfig
  30. include.path=.gitcredential
  31. diff.exif.textconv=exif
  32. credential.helper=osxkeychain
  33. mergetool.sourcetree.cmd=--null
  34. user.name=username
  35. user.email=email
  36.  
  37. git config --list
  38.  
  39. git config --system --list
  40.  
  41. git config --global --list
  42.  
  43. git config --local --list
  44.  
  45. git config --global user.name <your-name>
  46. git config --global user.email <your-email>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement