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
Hi, when combining two patches where the first one creates a new file
--- /dev/null +++ b/txt @@ -0,0 +1,3 @@ +a +b +c
and the second one modifies that same file
--- a/txt +++ b/txt @@ -1,3 +1,2 @@ a b -c
then combinediff outputs
unchanged: --- /dev/null +++ b/txt @@ -0,0 +1,3 @@ +a +b +c only in patch2: unchanged: --- a/txt +++ b/txt @@ -1,3 +1,2 @@ a b -c
that is, the patches are not combined.
Regards, Vicenç.
The text was updated successfully, but these errors were encountered:
I also see this.
That device (/dev/null) is used by git to express a file addition or deletion.
/dev/null
The expected output is
--- /dev/null +++ b/txt @@ -0,0 +1,2 @@ +a +b
Sorry, something went wrong.
No branches or pull requests
Hi,
when combining two patches where the first one creates a new file
and the second one modifies that same file
then combinediff outputs
that is, the patches are not combined.
Regards,
Vicenç.
The text was updated successfully, but these errors were encountered: