Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. [user]
  2. name = Carlos Fernandez Garcia
  3. email = carlos.villademor@gmail.com
  4. [color]
  5. branch = auto
  6. diff = auto
  7. status = auto
  8. [color "branch"]
  9. current = yellow reverse
  10. local = yellow
  11. remote = green
  12. [color "diff"]
  13. meta = yellow bold
  14. frag = magenta bold
  15. old = red bold
  16. new = green bold
  17. [color "status"]
  18. added = yellow
  19. changed = green
  20. untracked = cyan
  21. [alias]
  22. co = checkout
  23. ci = commit
  24. br = branch
  25. cl = clone
  26. in = init
  27. rb = rebase
  28. pu = push
  29. ph = push
  30. pl = pull
  31. fe = fetch
  32. df = diff
  33. st = status
  34. masterNonPulledCommits = log HEAD..origin/master
  35. masterNonPulledCommitsDiff = diff origin/master..HEAD
  36. commitsNotPushed = log --branches --not --remotes
  37. mergedBranches = branch --merged
  38. mergedRemoteBranches = branch -r --merged
  39. notMergedBranches = branch --no-merged
  40. deleteRemoteBranch = push origin --delete $1
  41. branchesLastCommit = branch -v
  42. remoteRemoteTracking = fetch -p
  43. stashNotStaged = stash --keep-index
  44. [push]
  45. default = simple
  46. [url "ssh://git@"]
  47. insteadOf = git://
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement