Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. m = merge
  2. cb = checkout -b
  3. ss = status -s
  4. l = log
  5. c = checkout
  6. cm = commit
  7. r = reset
  8. rb = rebase
  9. ri = rebase -i
  10.  
  11. a = add
  12. d = diff
  13. dc = diff --cached
  14.  
  15. stp = stash pop
  16. stl = stash list
  17. sts = stash save
  18. stv = stash show -v
  19.  
  20. b = branch
  21. bd = branch -d
  22. bdf = branch -D
  23.  
  24. amd = commit --amend
  25. lst = log --stat
  26. rhh = reset --hard HEAD
  27.  
  28. g = log --graph --date-order -C -M --date=short --pretty=format:'%h [%ar] [%an] %Cgreen%d%Creset %s' --all
  29. gd = log --graph --date-order -C -M --decorate --oneline --date=short --all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement