]> git.ipfire.org Git - thirdparty/git.git/blame - git-diff-script
Add "--flags" and "--no-flags" arguments to git-rev-parse
[thirdparty/git.git] / git-diff-script
CommitLineData
940c1bb0
LT
1#!/bin/sh
2rev=($(git-rev-parse --revs-only "$@"))
3flags=($(git-rev-parse --no-revs "$@"))
4case "${#rev[*]}" in
50)
753fd784 6 git-diff-files -M -p "$@";;
940c1bb0 71)
753fd784 8 git-diff-cache -M -p "$@";;
940c1bb0
LT
92)
10 begin=$(echo "${rev[1]}" | tr -d '^')
11 end="${rev[0]}"
753fd784 12 git-diff-tree -M -p $flags $begin $end;;
940c1bb0
LT
13*)
14 echo "I don't understand"
15 exit 1;;
16esac