projects
/
wrapfs-mgmt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5da9d8e
)
add ezk script to check git diff of repo
author
Erez Zadok
<ezk@cs.sunysb.edu>
Sat, 7 May 2022 00:19:18 +0000
(20:19 -0400)
committer
Erez Zadok
<ezk@cs.sunysb.edu>
Sat, 7 May 2022 00:19:18 +0000
(20:19 -0400)
wezdiff
[new file with mode: 0755]
patch
|
blob
diff --git a/wezdiff
b/wezdiff
new file mode 100755
(executable)
index 0000000..
187b310
--- /dev/null
+++ b/
wezdiff
@@ -0,0
+1,11
@@
+#!/bin/sh
+mv -f diffs.txt diffs.txt.old
+for i in * */* ; do
+ test -f "$i" || continue
+ case "$i" in
+ *.config ) ;;
+ * )
+ ezgit diff "$i" >> diffs.txt
+ ;;
+ esac
+done