diff options
author | Teddy Wing | 2023-11-24 20:48:55 +0100 |
---|---|---|
committer | Teddy Wing | 2023-11-24 20:48:55 +0100 |
commit | 93719fc0a1c2e11aca1a645efce0e23502054b03 (patch) | |
tree | c3e4f98be2eae60622541e73d3152cf1b3c842fb | |
parent | 1b46638e39f34ca3cfffdde235db69cd8150d284 (diff) | |
download | code-review-93719fc0a1c2e11aca1a645efce0e23502054b03.tar.bz2 |
code-review-stat: Pass arguments to Git
This allows us to pass along arguments like `--ignore-all-space`.
-rwxr-xr-x | code-review-stat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code-review-stat b/code-review-stat index f3b7197..3d5b886 100755 --- a/code-review-stat +++ b/code-review-stat @@ -21,4 +21,4 @@ SCRIPT="$(dirname "$0")" source "$SCRIPT/code-review-database" -git diff --stat "$(get_merge_base)" +git diff --stat "$(get_merge_base)" "$@" |