Skip to content

Instantly share code, notes, and snippets.

@aalvesjr
Last active June 7, 2016 13:50
Show Gist options
  • Save aalvesjr/3ec52400aafdd344a944 to your computer and use it in GitHub Desktop.
Save aalvesjr/3ec52400aafdd344a944 to your computer and use it in GitHub Desktop.
[GIT] Git alias configured in .gitconfig
[user]                                                                                                                                                
  email = [email protected]
  name = Armando
[color "diff"]
  commit = yellow
  frag = cyan reverse
  meta = black
  new = green
  old = red 
  plain = black
  whitespace = normal red 
[alias]
  b = branch
  ca = commit --amend
  ci = commit
  co = checkout
  dw = diff --word-diff
  fl = log -p
  lg = log --oneline --decorate
  sb = status -sb 
  sh = !git-sh
  st = status
  who = shortlog -s --
[core]
  editor = vim 
[help]
  autocorrect = 1 

Fonte aliases

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment