Open lucastheisen opened 5 years ago
The current code uses:
path = fmt.Sprintf("%s -> %s", path, status.Extra)
But the git documentation says it should be:
XY ORIG_PATH -> PATH
So I would expect this code to be:
path = fmt.Sprintf("%s -> %s", status.Extra, path)
The current code uses:
But the git documentation says it should be:
So I would expect this code to be: