Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
53
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. email = whatever@whoever.fr
  3. name = whatever
  4. [alias]
  5. oops = commit --amend
  6. log-me = log --author=whatever --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
  7. log-me-week = !/bin/bash -c 'git log-me --since="1.week"'
  8. me-pull-full = pull -v --recurse-submodules
  9. me-submodule = submodule update --init --recursive
  10. pl-all = !/bin/bash -c 'cd $(git rev-parse --show-toplevel) && git me-pull-full && git fetch -v --tags && git me-submodule && cd -'
  11. [core]
  12. editor = vim
  13. # Don't consider trailing space change as a cause for merge conflicts
  14. whitespace = -trailing-space
  15. excludesfile = /home/whatever/.gitignore
  16. [push]
  17. default = simple
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement