We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in case of large file(more than 10M) go-git is unable to calculate the diff and panics.
Checklist:
Describe the bug
sergi/go-diff#89 in case of large file(more than 10M) go-git is unable to calculate the diff and panics.
To Reproduce
snippet to reproduce
dat, err := os.ReadFile("/large-file") if err != nil { panic(err) } data := string(dat) d := diff.DoWithTimeout("", data, time.Hour) fmt.Println(d)
The text was updated successfully, but these errors were encountered:
possible fix:
Sorry, something went wrong.
nishant-d
Successfully merging a pull request may close this issue.
in case of large file(more than 10M) go-git is unable to calculate the diff and panics.
Checklist:
Describe the bug
sergi/go-diff#89
in case of large file(more than 10M) go-git is unable to calculate the diff and panics.
To Reproduce
snippet to reproduce
The text was updated successfully, but these errors were encountered: