Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 0.62 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. git aliases fails : 'Not a directory'
  2. -rwxrwxr-x. 1 oleiade oleiade 732 Feb  8 10:32 /home/oleiade/.gitconfig
  3.        
  4. [alias]
  5. ci              = commit
  6. amend           = commit --amend
  7. df              = diff --ignore-space-change --stat
  8. co              = checkout
  9. st              = status
  10. br              = branch
  11. tree            = log --graph --pretty=oneline --decorate
  12. unstage         = reset --hard HEAD
  13. undo            = git reset --soft HEAD^
  14. hist            = log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short
  15. merge           = merge --no-ff
  16. pushm           = push origin master
  17. pullm           = pull origin master