mirror of
https://github.com/tj/git-extras.git
synced 2026-09-12 08:26:17 -04:00
7 lines
144 B
Bash
Executable file
7 lines
144 B
Bash
Executable file
#!/bin/sh
|
|
|
|
branch=${1:-`git rev-parse --abbrev-ref HEAD`}
|
|
master=${2:-master}
|
|
|
|
git diff --name-status `git merge-base $branch $master`..$branch
|