Guest User

Untitled

a guest
Dec 6th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. [user]
  2. name = whatever
  3. [alias]
  4. oops = commit --amend
  5. log-me = log --author=whatever --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
  6. log-me-week = !/bin/bash -c 'git log-me --since="1.week"'
  7. me-pull-full = pull -v --recurse-submodules
  8. me-submodule = submodule update --init --recursive
  9. pl-all = !/bin/bash -c 'cd $(git rev-parse --show-toplevel) && git me-pull-full && git fetch -v --tags && git me-submodule && cd -'
  10. [core]
  11. editor = vim
  12. # Don't consider trailing space change as a cause for merge conflicts
  13. whitespace = -trailing-space
  14. excludesfile = /home/whatever/.gitignore
  15. [push]
  16. default = simple
Advertisement
Add Comment
Please, Sign In to add comment