[PATCH 1/1] .mailmap: update email address of Andrey Mazo

2019-08-26 Thread Andrey Mazo
From: Andrey Mazo I don't have access to my old work email since 20 Apr 2019. Replace with my personal email address. Signed-off-by: Andrey Mazo --- .mailmap | 1 + 1 file changed, 1 insertion(+) diff --git a/.mailmap b/.mailmap index 9a5ff04753..14fa041043 100644 --- a/.mailmap

[PATCH v2 1/1] git-p4: auto-delete named temporary file

2019-08-26 Thread Andrey Mazo
Also print error details after resulting IOError to make debugging cause of exception less mysterious when it has nothing to do with "git version recent enough." Signed-off-by: Philip.McGraw Reviewed-by: Andrey Mazo --- git-p4.py | 13 ++--- 1 file changed, 6 insertions(+),

[PATCH 1/1] git-p4: fix `sync --verbose` traceback due to 'fileSize'

2018-04-17 Thread Andrey Mazo
by omitting the file size information from the verbose print out. Also, don't use "self.stream_file" directly, but rather use passed in "file" argument. (which point to the same "self.stream_file" for all existing callers) Signed-off-by: Andrey Mazo --- gi

Re: [BUG] git p4 clone fails when p4 sizes does not return 'fileSize' key

2018-04-17 Thread Andrey Mazo
Huh, I actually have a slightly different fix for the same issue. It doesn't suppress the corresponding verbose output completely, but just removes the size information from it. Also, I'd mention that the workaround is trivial -- simply omit the "--verbose" option. Andre