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
Test Case:
fn main() { let base = r#" class GithubCall(db.Model): `url`: URL of request Example.`https://api.github.com`"#; let theirs = r#" class GithubCall(db.Model): `repo`: String field. Github repository fields. Example: `amitu/python`"#; let ours = r#" class Call(models.Model): `body`: String field. The payload of the webhook call from the github. `repo`: String field. Github repository fields. Example: `amitu/python`"#; println!("Diffy merge test"); match diffy::merge(base, ours, theirs) { Ok(s) => { println!("{}", s); } Err(s) => { println!("{}", s); } } }
Findings:
clean_conficts
ConflictStyle
ConflictStyle::Diff3
ConflictStyle::Merge
The text was updated successfully, but these errors were encountered:
@mxfunc Thank you so much for the bug report! I think I've already identified the issue and will have a fix out shortly.
Sorry, something went wrong.
59cf37a
Thanks @bmwill for the super fast fix!
Of course! Please let me know if you find any other issues :)
No branches or pull requests
Test Case:
Findings:
clean_conficts
function is commented.ConflictStyle
is changed fromConflictStyle::Diff3
toConflictStyle::Merge
The text was updated successfully, but these errors were encountered: