|
Subject: Re: Bug report: .gitattributes: -diff Unset causes files to be reported as binaries Newsgroups: gmane.comp.version-control.git Date: 2009-07-02 05:35:34 GMT (36 weeks, 23 hours and 38 minutes ago)
On Wed, Jul 01, 2009 at 12:08:35PM +0200, Frans Englich wrote:
> Applying -diff Unset to a file using .gittattributes causes "git diff"
> to state that the file is a binary even though it isn't, or have been
> instructed to be treated as one. See attached script for reproducing.
I think you are a little confused by the syntax. Each line of the
gitattributes file has a filename pattern and a set of attributes. Each
attribute is either set, unset, set to a value, or unspecified. For your
example (file.txt and the "diff" attribute), they look like:
Set:
file.txt diff
Unset:
file.txt -diff
Set to a value:
file.txt diff=foo
Unspecified:
file.txt
So the word "Unset" is unnecessary in "-diff Unset" (and syntactically
means "set the attribute named "Unset", not any sort of modifier on the
diff attribute). This is described in the first section of "git help
attributes".
All of that being said, your example does end up, in fact, making the
diff attribute "unset" for you (because it uses "-diff"). And the effect
of doing so is to mark the file as binary (i.e., not to be diffed). From
"git help attributes", section "Generating diff text":
The attribute `diff` affects how 'git' generates diffs for particular
files. It can tell git whether to generate a textual patch for the
path or to treat the path as a binary file.
[...]
Unset
A path to which the diff attribute is unset will generate Binary
files differ.
So as far as I can see, git is behaving exactly as it is supposed to.
Maybe you can be more specific about what effect you were trying to
achieve by setting gitattributes in the first place?
-Peff
|
|
|