Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 278 Bytes

File metadata and controls

13 lines (12 loc) · 278 Bytes

Create Git Aliases

Add the following to the .gitconfig file in your $HOME directory.

[alias]
  co = checkout
  ci = commit
  st = status
  br = branch
  hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
  type = cat-file -t
  dump = cat-file -p