mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
7 lines
116 B
Bash
Executable file
7 lines
116 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ref=$(git symbolic-ref HEAD)
|
|
branch=${ref#refs/heads/}
|
|
|
|
git log origin/${branch}..${branch} $*
|