diff options
| author | Teddy Wing | 2019-06-02 04:25:37 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2019-06-02 04:25:37 +0200 | 
| commit | a98dccc55500ba55b90d17092e51c308d2febffc (patch) | |
| tree | dc766dbe392510bb93259254e54c4bdb3fe4b9d7 | |
| parent | fce04ad138f93da72fc8c3dbea610d30860573e3 (diff) | |
| download | code-review-a98dccc55500ba55b90d17092e51c308d2febffc.tar.bz2 | |
Add a script to show filenames of changed files
Arguments are a Git refspec.
| -rwxr-xr-x | git-changed-files | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/git-changed-files b/git-changed-files new file mode 100755 index 0000000..30a9c5c --- /dev/null +++ b/git-changed-files @@ -0,0 +1,3 @@ +#!/bin/sh + +git diff --name-only "$@" | 
