diff options
author | Teddy Wing | 2019-06-09 20:30:17 +0200 |
---|---|---|
committer | Teddy Wing | 2019-06-09 20:30:17 +0200 |
commit | 022fa289cce900a4f178e0fcbdef8e609780a764 (patch) | |
tree | b2cc051ebc2e11f9c2dc96a1fd4fd135a3768168 | |
parent | ccc806cac2e12d4f6c6fbc92e2fd5aef6db79252 (diff) | |
download | code-review-022fa289cce900a4f178e0fcbdef8e609780a764.tar.bz2 |
code-review-difftool: Change `master..` to `master`
Turns out some files were excluded using the `..` range.
-rwxr-xr-x | code-review-difftool | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code-review-difftool b/code-review-difftool index 1451fa0..54376c4 100755 --- a/code-review-difftool +++ b/code-review-difftool @@ -9,4 +9,4 @@ fi # TODO: Use `code-review-changed-files` instead of `git diff --name-only` # TODO: Can't replace single dots as those could be part of a branch name # vim -c 'tabdo Gdiff ${REVIEW_BASE/./}' -p $(git diff --name-only "$REVIEW_BASE") -vim -c 'tabdo Gdiff origin/master' -p $(git diff --name-only origin/master..) +vim -c 'tabdo Gdiff origin/master' -p $(git diff --name-only origin/master) |