We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca4268a + 4bacf5f commit 5c16e8dCopy full SHA for 5c16e8d
pkg/git/GitFormatter.go
@@ -61,6 +61,7 @@ func parseFormattedLogOutput(out string) ([]GitCommitFormat, error) {
61
62
logOut = logOut[1 : len(logOut)-2] // trim surround characters (surrounding quotes and trailing comma)
63
logOut = strings.Join([]string{"[", "]"}, logOut)
64
+ logOut = strings.ReplaceAll(logOut, "\\x", "")
65
66
var gitCommitFormattedList []GitCommitFormat
67
err := json.Unmarshal([]byte(logOut), &gitCommitFormattedList)
0 commit comments