citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

git-logr (159B)


      1 #!/usr/bin/env bash
      2 ancestor=${1:-HEAD}
      3 descendent=${2:-origin/master}
      4 shift
      5 shift
      6 exec git log --graph --oneline ^$ancestor^ $descendent --ancestry-path "$@"