Advertisement
Ankirama

.gitconfig

Sep 14th, 2017
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. [user]
  2. name = Ankirama
  3. email = firstname.lastname@domain.tld
  4. [core]
  5. editor = emacs -nw
  6. [push]
  7. default = simple
  8. [alias]
  9. lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr, %cn)%Creset' --abbrev-commit --date=relative
  10. hist = log --graph --pretty=format:'%h %ad | %s%d [%an]' --date=short
  11. last = log -1 HEAD
  12. unstage = reset HEAD --
  13. amend = commit --amend -C HEAD
  14. co = checkout
  15. ci = commit
  16. st = status
  17. br = branch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement