summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/src/cmd/git/diff14
1 files changed, 10 insertions, 4 deletions
diff --git a/sys/src/cmd/git/diff b/sys/src/cmd/git/diff
index 64206c4a7..28e69d660 100644
--- a/sys/src/cmd/git/diff
+++ b/sys/src/cmd/git/diff
@@ -26,16 +26,22 @@ fn lsdirty {
git/query -c $commit HEAD | subst '^..'
}
+showed=()
mntgen /mnt/scratch
bind $branch/tree/ /mnt/scratch/a
bind . /mnt/scratch/b
-echo diff `{git/query $commit} uncommitted
for(f in `$nl{lsdirty | sort | uniq}){
+ if(~ $#showed 0){
+ echo diff `{git/query $commit} uncommitted
+ showed=1
+ }
cd /mnt/scratch
+ a=a/$f
+ b=b/$f
if(! test -f a/$f)
- orig=/dev/null
+ a=/dev/null
if(! test -f b/$f)
- f=/dev/null
- diff -u a/$f b/$f
+ b=/dev/null
+ diff -u $a $b
}
exit ''