No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

25 líneas
1.0 KiB

  1. [alias]
  2. up = !sh -c 'git pull --rebase && git push'
  3. wsdiff = diff --color-words --ignore-space-at-eol --ignore-space-change --ignore-all-space --ignore-all-space
  4. wdiff = diff --color-words
  5. ci = commit
  6. ciu = commit --all
  7. co = checkout
  8. ds = diff --stat
  9. ba = branch --all
  10. st = status --short --branch
  11. unstage = reset HEAD
  12. tlog = log --graph --color=always --abbrev-commit --date=relative --pretty=oneline
  13. hist = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
  14. slog = log --oneline --decorate
  15. fixup = commit --fixup
  16. squash = commit --squash
  17. ri = rebase --interactive --autosquash
  18. ra = rebase --abort
  19. effit = reset --hard
  20. # What commits differ beteen branches, note, equivalent commits are omitted.
  21. # Use this with three dot operator aka master...origin/master
  22. cdiff = log --left-right --graph --cherry-pick --oneline
  23. # Same as ^ only equivalent commits are listed with a = sign.
  24. cmdiff = log --left-right --graph --cherry-pick --oneline