Index: git_common.py |
diff --git a/git_common.py b/git_common.py |
index d571f820b7de02bd4bd3814716912d89dffa7f3d..949ba4695e0437f1ef6b9b078a9fca70f27377f5 100644 |
--- a/git_common.py |
+++ b/git_common.py |
@@ -374,6 +374,10 @@ def del_config(option, scope='local'): |
pass |
+def diff(oldrev, newrev, *args): |
+ return run('diff', oldrev, newrev, *args) |
+ |
+ |
def freeze(): |
took_action = False |