2007-04-20 05:48:03 +02:00
|
|
|
gitattributes(5)
|
|
|
|
================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
gitattributes - defining attributes per path
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-08-31 18:00:27 +02:00
|
|
|
$GIT_DIR/info/attributes, .gitattributes
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
A `gitattributes` file is a simple text file that gives
|
|
|
|
`attributes` to pathnames.
|
|
|
|
|
|
|
|
Each line in `gitattributes` file is of form:
|
|
|
|
|
2009-02-25 08:54:42 +01:00
|
|
|
pattern attr1 attr2 ...
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2009-02-25 08:54:42 +01:00
|
|
|
That is, a pattern followed by an attributes list,
|
|
|
|
separated by whitespaces. When the pattern matches the
|
2007-04-20 05:48:03 +02:00
|
|
|
path in question, the attributes listed on the line are given to
|
|
|
|
the path.
|
|
|
|
|
|
|
|
Each attribute can be in one of these states for a given path:
|
|
|
|
|
|
|
|
Set::
|
|
|
|
|
|
|
|
The path has the attribute with special value "true";
|
|
|
|
this is specified by listing only the name of the
|
|
|
|
attribute in the attribute list.
|
|
|
|
|
|
|
|
Unset::
|
|
|
|
|
|
|
|
The path has the attribute with special value "false";
|
|
|
|
this is specified by listing the name of the attribute
|
|
|
|
prefixed with a dash `-` in the attribute list.
|
|
|
|
|
|
|
|
Set to a value::
|
|
|
|
|
|
|
|
The path has the attribute with specified string value;
|
|
|
|
this is specified by listing the name of the attribute
|
|
|
|
followed by an equal sign `=` and its value in the
|
|
|
|
attribute list.
|
|
|
|
|
|
|
|
Unspecified::
|
|
|
|
|
2009-02-25 08:54:42 +01:00
|
|
|
No pattern matches the path, and nothing says if
|
2007-04-24 22:46:02 +02:00
|
|
|
the path has or does not have the attribute, the
|
|
|
|
attribute for the path is said to be Unspecified.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2009-02-25 08:54:42 +01:00
|
|
|
When more than one pattern matches the path, a later line
|
2007-04-24 22:46:02 +02:00
|
|
|
overrides an earlier line. This overriding is done per
|
2009-02-25 08:54:42 +01:00
|
|
|
attribute. The rules how the pattern matches paths are the
|
|
|
|
same as in `.gitignore` files; see linkgit:gitignore[5].
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
When deciding what attributes are assigned to a path, git
|
|
|
|
consults `$GIT_DIR/info/attributes` file (which has the highest
|
|
|
|
precedence), `.gitattributes` file in the same directory as the
|
2009-04-06 17:03:36 +02:00
|
|
|
path in question, and its parent directories up to the toplevel of the
|
|
|
|
work tree (the further the directory that contains `.gitattributes`
|
2010-09-01 00:42:43 +02:00
|
|
|
is from the path in question, the lower its precedence). Finally
|
|
|
|
global and system-wide files are considered (they have the lowest
|
|
|
|
precedence).
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2008-03-27 06:31:00 +01:00
|
|
|
If you wish to affect only a single repository (i.e., to assign
|
2010-09-01 00:42:43 +02:00
|
|
|
attributes to files that are particular to
|
|
|
|
one user's workflow for that repository), then
|
2008-03-27 06:31:00 +01:00
|
|
|
attributes should be placed in the `$GIT_DIR/info/attributes` file.
|
|
|
|
Attributes which should be version-controlled and distributed to other
|
|
|
|
repositories (i.e., attributes of interest to all users) should go into
|
2010-09-01 00:42:43 +02:00
|
|
|
`.gitattributes` files. Attributes that should affect all repositories
|
|
|
|
for a single user should be placed in a file specified by the
|
|
|
|
`core.attributesfile` configuration option (see linkgit:git-config[1]).
|
2012-06-22 11:03:25 +02:00
|
|
|
Its default value is $XDG_CONFIG_HOME/git/attributes. If $XDG_CONFIG_HOME
|
|
|
|
is either not set or empty, $HOME/.config/git/attributes is used instead.
|
2010-09-01 00:42:43 +02:00
|
|
|
Attributes for all users on a system should be placed in the
|
|
|
|
`$(prefix)/etc/gitattributes` file.
|
2008-03-27 06:31:00 +01:00
|
|
|
|
2007-04-20 05:48:03 +02:00
|
|
|
Sometimes you would need to override an setting of an attribute
|
2011-08-03 15:41:30 +02:00
|
|
|
for a path to `Unspecified` state. This can be done by listing
|
2007-04-20 05:48:03 +02:00
|
|
|
the name of the attribute prefixed with an exclamation point `!`.
|
|
|
|
|
|
|
|
|
|
|
|
EFFECTS
|
|
|
|
-------
|
|
|
|
|
|
|
|
Certain operations by git can be influenced by assigning
|
2007-07-09 02:15:09 +02:00
|
|
|
particular attributes to a path. Currently, the following
|
|
|
|
operations are attributes-aware.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
Checking-out and checking-in
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2007-04-22 04:09:02 +02:00
|
|
|
These attributes affect how the contents stored in the
|
2007-04-20 05:48:03 +02:00
|
|
|
repository are copied to the working tree files when commands
|
2010-01-10 00:33:00 +01:00
|
|
|
such as 'git checkout' and 'git merge' run. They also affect how
|
2007-04-20 05:48:03 +02:00
|
|
|
git stores the contents you prepare in the working tree in the
|
2010-01-10 00:33:00 +01:00
|
|
|
repository upon 'git add' and 'git commit'.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:11 +02:00
|
|
|
`text`
|
2007-04-22 04:09:02 +02:00
|
|
|
^^^^^^
|
|
|
|
|
2010-05-19 22:43:10 +02:00
|
|
|
This attribute enables and controls end-of-line normalization. When a
|
|
|
|
text file is normalized, its line endings are converted to LF in the
|
|
|
|
repository. To control what line ending style is used in the working
|
|
|
|
directory, use the `eol` attribute for a single file and the
|
2010-06-04 21:29:08 +02:00
|
|
|
`core.eol` configuration variable for all text files.
|
2007-04-22 04:09:02 +02:00
|
|
|
|
2007-04-20 05:48:03 +02:00
|
|
|
Set::
|
|
|
|
|
2010-05-19 22:43:11 +02:00
|
|
|
Setting the `text` attribute on a path enables end-of-line
|
2010-05-19 22:43:10 +02:00
|
|
|
normalization and marks the path as a text file. End-of-line
|
|
|
|
conversion takes place without guessing the content type.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
Unset::
|
|
|
|
|
2010-05-19 22:43:11 +02:00
|
|
|
Unsetting the `text` attribute on a path tells git not to
|
2008-08-30 23:35:15 +02:00
|
|
|
attempt any end-of-line conversion upon checkin or checkout.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:10 +02:00
|
|
|
Set to string value "auto"::
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:11 +02:00
|
|
|
When `text` is set to "auto", the path is marked for automatic
|
2010-05-19 22:43:10 +02:00
|
|
|
end-of-line normalization. If git decides that the content is
|
|
|
|
text, its line endings are normalized to LF on checkin.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
Unspecified::
|
|
|
|
|
2010-06-04 21:29:08 +02:00
|
|
|
If the `text` attribute is unspecified, git uses the
|
|
|
|
`core.autocrlf` configuration variable to determine if the
|
|
|
|
file should be converted.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:11 +02:00
|
|
|
Any other value causes git to act as if `text` has been left
|
2010-05-19 22:43:10 +02:00
|
|
|
unspecified.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:10 +02:00
|
|
|
`eol`
|
|
|
|
^^^^^
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:10 +02:00
|
|
|
This attribute sets a specific line-ending style to be used in the
|
|
|
|
working directory. It enables end-of-line normalization without any
|
2010-06-04 21:29:08 +02:00
|
|
|
content checks, effectively setting the `text` attribute.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:10 +02:00
|
|
|
Set to string value "crlf"::
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-06-04 21:29:08 +02:00
|
|
|
This setting forces git to normalize line endings for this
|
|
|
|
file on checkin and convert them to CRLF when the file is
|
|
|
|
checked out.
|
2010-05-19 22:43:10 +02:00
|
|
|
|
|
|
|
Set to string value "lf"::
|
|
|
|
|
|
|
|
This setting forces git to normalize line endings to LF on
|
|
|
|
checkin and prevents conversion to CRLF when the file is
|
2010-06-04 21:29:08 +02:00
|
|
|
checked out.
|
2010-05-19 22:43:11 +02:00
|
|
|
|
|
|
|
Backwards compatibility with `crlf` attribute
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
For backwards compatibility, the `crlf` attribute is interpreted as
|
|
|
|
follows:
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
crlf text
|
|
|
|
-crlf -text
|
|
|
|
crlf=input eol=lf
|
|
|
|
------------------------
|
2010-05-19 22:43:10 +02:00
|
|
|
|
|
|
|
End-of-line conversion
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
While git normally leaves file contents alone, it can be configured to
|
|
|
|
normalize line endings to LF in the repository and, optionally, to
|
|
|
|
convert them to CRLF when files are checked out.
|
|
|
|
|
|
|
|
Here is an example that will make git normalize .txt, .vcproj and .sh
|
|
|
|
files, ensure that .vcproj files have CRLF and .sh files have LF in
|
|
|
|
the working directory, and prevent .jpg files from being normalized
|
|
|
|
regardless of their content.
|
|
|
|
|
|
|
|
------------------------
|
2010-05-19 22:43:11 +02:00
|
|
|
*.txt text
|
2010-05-19 22:43:10 +02:00
|
|
|
*.vcproj eol=crlf
|
|
|
|
*.sh eol=lf
|
2010-05-19 22:43:11 +02:00
|
|
|
*.jpg -text
|
2010-05-19 22:43:10 +02:00
|
|
|
------------------------
|
|
|
|
|
|
|
|
Other source code management systems normalize all text files in their
|
|
|
|
repositories, and there are two ways to enable similar automatic
|
|
|
|
normalization in git.
|
|
|
|
|
|
|
|
If you simply want to have CRLF line endings in your working directory
|
|
|
|
regardless of the repository you are working with, you can set the
|
|
|
|
config variable "core.autocrlf" without changing any attributes.
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
[core]
|
|
|
|
autocrlf = true
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
This does not force normalization of all text files, but does ensure
|
|
|
|
that text files that you introduce to the repository have their line
|
|
|
|
endings normalized to LF when they are added, and that files that are
|
2010-06-04 21:29:08 +02:00
|
|
|
already normalized in the repository stay normalized.
|
2010-05-19 22:43:10 +02:00
|
|
|
|
|
|
|
If you want to interoperate with a source code management system that
|
|
|
|
enforces end-of-line normalization, or you simply want all text files
|
2010-05-19 22:43:11 +02:00
|
|
|
in your repository to be normalized, you should instead set the `text`
|
2010-05-19 22:43:10 +02:00
|
|
|
attribute to "auto" for _all_ files.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:10 +02:00
|
|
|
------------------------
|
2010-05-19 22:43:11 +02:00
|
|
|
* text=auto
|
2010-05-19 22:43:10 +02:00
|
|
|
------------------------
|
|
|
|
|
|
|
|
This ensures that all files that git considers to be text will have
|
2010-06-04 21:29:08 +02:00
|
|
|
normalized (LF) line endings in the repository. The `core.eol`
|
|
|
|
configuration variable controls which line endings git will use for
|
|
|
|
normalized files in your working directory; the default is to use the
|
|
|
|
native line ending for your platform, or CRLF if `core.autocrlf` is
|
|
|
|
set.
|
2010-05-19 22:43:10 +02:00
|
|
|
|
2010-05-19 22:43:11 +02:00
|
|
|
NOTE: When `text=auto` normalization is enabled in an existing
|
2010-05-19 22:43:10 +02:00
|
|
|
repository, any text files containing CRLFs should be normalized. If
|
|
|
|
they are not they will be normalized the next time someone tries to
|
|
|
|
change them, causing unfortunate misattribution. From a clean working
|
|
|
|
directory:
|
|
|
|
|
|
|
|
-------------------------------------------------
|
2010-05-19 22:43:11 +02:00
|
|
|
$ echo "* text=auto" >>.gitattributes
|
2010-05-19 22:43:10 +02:00
|
|
|
$ rm .git/index # Remove the index to force git to
|
|
|
|
$ git reset # re-scan the working directory
|
|
|
|
$ git status # Show files that will be normalized
|
|
|
|
$ git add -u
|
|
|
|
$ git add .gitattributes
|
|
|
|
$ git commit -m "Introduce end-of-line normalization"
|
|
|
|
-------------------------------------------------
|
|
|
|
|
|
|
|
If any files that should not be normalized show up in 'git status',
|
2010-05-19 22:43:11 +02:00
|
|
|
unset their `text` attribute before running 'git add -u'.
|
2010-05-19 22:43:10 +02:00
|
|
|
|
|
|
|
------------------------
|
2010-05-19 22:43:11 +02:00
|
|
|
manual.pdf -text
|
2010-05-19 22:43:10 +02:00
|
|
|
------------------------
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:10 +02:00
|
|
|
Conversely, text files that git does not detect can have normalization
|
|
|
|
enabled manually.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2010-05-19 22:43:10 +02:00
|
|
|
------------------------
|
2010-05-19 22:43:11 +02:00
|
|
|
weirdchars.txt text
|
2010-05-19 22:43:10 +02:00
|
|
|
------------------------
|
2007-04-20 05:48:03 +02:00
|
|
|
|
safecrlf: Add mechanism to warn about irreversible crlf conversions
CRLF conversion bears a slight chance of corrupting data.
autocrlf=true will convert CRLF to LF during commit and LF to
CRLF during checkout. A file that contains a mixture of LF and
CRLF before the commit cannot be recreated by git. For text
files this is the right thing to do: it corrects line endings
such that we have only LF line endings in the repository.
But for binary files that are accidentally classified as text the
conversion can corrupt data.
If you recognize such corruption early you can easily fix it by
setting the conversion type explicitly in .gitattributes. Right
after committing you still have the original file in your work
tree and this file is not yet corrupted. You can explicitly tell
git that this file is binary and git will handle the file
appropriately.
Unfortunately, the desired effect of cleaning up text files with
mixed line endings and the undesired effect of corrupting binary
files cannot be distinguished. In both cases CRLFs are removed
in an irreversible way. For text files this is the right thing
to do because CRLFs are line endings, while for binary files
converting CRLFs corrupts data.
This patch adds a mechanism that can either warn the user about
an irreversible conversion or can even refuse to convert. The
mechanism is controlled by the variable core.safecrlf, with the
following values:
- false: disable safecrlf mechanism
- warn: warn about irreversible conversions
- true: refuse irreversible conversions
The default is to warn. Users are only affected by this default
if core.autocrlf is set. But the current default of git is to
leave core.autocrlf unset, so users will not see warnings unless
they deliberately chose to activate the autocrlf mechanism.
The safecrlf mechanism's details depend on the git command. The
general principles when safecrlf is active (not false) are:
- we warn/error out if files in the work tree can modified in an
irreversible way without giving the user a chance to backup the
original file.
- for read-only operations that do not modify files in the work tree
we do not not print annoying warnings.
There are exceptions. Even though...
- "git add" itself does not touch the files in the work tree, the
next checkout would, so the safety triggers;
- "git apply" to update a text file with a patch does touch the files
in the work tree, but the operation is about text files and CRLF
conversion is about fixing the line ending inconsistencies, so the
safety does not trigger;
- "git diff" itself does not touch the files in the work tree, it is
often run to inspect the changes you intend to next "git add". To
catch potential problems early, safety triggers.
The concept of a safety check was originally proposed in a similar
way by Linus Torvalds. Thanks to Dimitry Potapov for insisting
on getting the naked LF/autocrlf=true case right.
Signed-off-by: Steffen Prohaska <prohaska@zib.de>
2008-02-06 12:25:58 +01:00
|
|
|
If `core.safecrlf` is set to "true" or "warn", git verifies if
|
|
|
|
the conversion is reversible for the current setting of
|
|
|
|
`core.autocrlf`. For "true", git rejects irreversible
|
|
|
|
conversions; for "warn", git only prints a warning but accepts
|
|
|
|
an irreversible conversion. The safety triggers to prevent such
|
|
|
|
a conversion done to the files in the work tree, but there are a
|
|
|
|
few exceptions. Even though...
|
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
- 'git add' itself does not touch the files in the work tree, the
|
safecrlf: Add mechanism to warn about irreversible crlf conversions
CRLF conversion bears a slight chance of corrupting data.
autocrlf=true will convert CRLF to LF during commit and LF to
CRLF during checkout. A file that contains a mixture of LF and
CRLF before the commit cannot be recreated by git. For text
files this is the right thing to do: it corrects line endings
such that we have only LF line endings in the repository.
But for binary files that are accidentally classified as text the
conversion can corrupt data.
If you recognize such corruption early you can easily fix it by
setting the conversion type explicitly in .gitattributes. Right
after committing you still have the original file in your work
tree and this file is not yet corrupted. You can explicitly tell
git that this file is binary and git will handle the file
appropriately.
Unfortunately, the desired effect of cleaning up text files with
mixed line endings and the undesired effect of corrupting binary
files cannot be distinguished. In both cases CRLFs are removed
in an irreversible way. For text files this is the right thing
to do because CRLFs are line endings, while for binary files
converting CRLFs corrupts data.
This patch adds a mechanism that can either warn the user about
an irreversible conversion or can even refuse to convert. The
mechanism is controlled by the variable core.safecrlf, with the
following values:
- false: disable safecrlf mechanism
- warn: warn about irreversible conversions
- true: refuse irreversible conversions
The default is to warn. Users are only affected by this default
if core.autocrlf is set. But the current default of git is to
leave core.autocrlf unset, so users will not see warnings unless
they deliberately chose to activate the autocrlf mechanism.
The safecrlf mechanism's details depend on the git command. The
general principles when safecrlf is active (not false) are:
- we warn/error out if files in the work tree can modified in an
irreversible way without giving the user a chance to backup the
original file.
- for read-only operations that do not modify files in the work tree
we do not not print annoying warnings.
There are exceptions. Even though...
- "git add" itself does not touch the files in the work tree, the
next checkout would, so the safety triggers;
- "git apply" to update a text file with a patch does touch the files
in the work tree, but the operation is about text files and CRLF
conversion is about fixing the line ending inconsistencies, so the
safety does not trigger;
- "git diff" itself does not touch the files in the work tree, it is
often run to inspect the changes you intend to next "git add". To
catch potential problems early, safety triggers.
The concept of a safety check was originally proposed in a similar
way by Linus Torvalds. Thanks to Dimitry Potapov for insisting
on getting the naked LF/autocrlf=true case right.
Signed-off-by: Steffen Prohaska <prohaska@zib.de>
2008-02-06 12:25:58 +01:00
|
|
|
next checkout would, so the safety triggers;
|
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
- 'git apply' to update a text file with a patch does touch the files
|
safecrlf: Add mechanism to warn about irreversible crlf conversions
CRLF conversion bears a slight chance of corrupting data.
autocrlf=true will convert CRLF to LF during commit and LF to
CRLF during checkout. A file that contains a mixture of LF and
CRLF before the commit cannot be recreated by git. For text
files this is the right thing to do: it corrects line endings
such that we have only LF line endings in the repository.
But for binary files that are accidentally classified as text the
conversion can corrupt data.
If you recognize such corruption early you can easily fix it by
setting the conversion type explicitly in .gitattributes. Right
after committing you still have the original file in your work
tree and this file is not yet corrupted. You can explicitly tell
git that this file is binary and git will handle the file
appropriately.
Unfortunately, the desired effect of cleaning up text files with
mixed line endings and the undesired effect of corrupting binary
files cannot be distinguished. In both cases CRLFs are removed
in an irreversible way. For text files this is the right thing
to do because CRLFs are line endings, while for binary files
converting CRLFs corrupts data.
This patch adds a mechanism that can either warn the user about
an irreversible conversion or can even refuse to convert. The
mechanism is controlled by the variable core.safecrlf, with the
following values:
- false: disable safecrlf mechanism
- warn: warn about irreversible conversions
- true: refuse irreversible conversions
The default is to warn. Users are only affected by this default
if core.autocrlf is set. But the current default of git is to
leave core.autocrlf unset, so users will not see warnings unless
they deliberately chose to activate the autocrlf mechanism.
The safecrlf mechanism's details depend on the git command. The
general principles when safecrlf is active (not false) are:
- we warn/error out if files in the work tree can modified in an
irreversible way without giving the user a chance to backup the
original file.
- for read-only operations that do not modify files in the work tree
we do not not print annoying warnings.
There are exceptions. Even though...
- "git add" itself does not touch the files in the work tree, the
next checkout would, so the safety triggers;
- "git apply" to update a text file with a patch does touch the files
in the work tree, but the operation is about text files and CRLF
conversion is about fixing the line ending inconsistencies, so the
safety does not trigger;
- "git diff" itself does not touch the files in the work tree, it is
often run to inspect the changes you intend to next "git add". To
catch potential problems early, safety triggers.
The concept of a safety check was originally proposed in a similar
way by Linus Torvalds. Thanks to Dimitry Potapov for insisting
on getting the naked LF/autocrlf=true case right.
Signed-off-by: Steffen Prohaska <prohaska@zib.de>
2008-02-06 12:25:58 +01:00
|
|
|
in the work tree, but the operation is about text files and CRLF
|
|
|
|
conversion is about fixing the line ending inconsistencies, so the
|
|
|
|
safety does not trigger;
|
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
- 'git diff' itself does not touch the files in the work tree, it is
|
|
|
|
often run to inspect the changes you intend to next 'git add'. To
|
safecrlf: Add mechanism to warn about irreversible crlf conversions
CRLF conversion bears a slight chance of corrupting data.
autocrlf=true will convert CRLF to LF during commit and LF to
CRLF during checkout. A file that contains a mixture of LF and
CRLF before the commit cannot be recreated by git. For text
files this is the right thing to do: it corrects line endings
such that we have only LF line endings in the repository.
But for binary files that are accidentally classified as text the
conversion can corrupt data.
If you recognize such corruption early you can easily fix it by
setting the conversion type explicitly in .gitattributes. Right
after committing you still have the original file in your work
tree and this file is not yet corrupted. You can explicitly tell
git that this file is binary and git will handle the file
appropriately.
Unfortunately, the desired effect of cleaning up text files with
mixed line endings and the undesired effect of corrupting binary
files cannot be distinguished. In both cases CRLFs are removed
in an irreversible way. For text files this is the right thing
to do because CRLFs are line endings, while for binary files
converting CRLFs corrupts data.
This patch adds a mechanism that can either warn the user about
an irreversible conversion or can even refuse to convert. The
mechanism is controlled by the variable core.safecrlf, with the
following values:
- false: disable safecrlf mechanism
- warn: warn about irreversible conversions
- true: refuse irreversible conversions
The default is to warn. Users are only affected by this default
if core.autocrlf is set. But the current default of git is to
leave core.autocrlf unset, so users will not see warnings unless
they deliberately chose to activate the autocrlf mechanism.
The safecrlf mechanism's details depend on the git command. The
general principles when safecrlf is active (not false) are:
- we warn/error out if files in the work tree can modified in an
irreversible way without giving the user a chance to backup the
original file.
- for read-only operations that do not modify files in the work tree
we do not not print annoying warnings.
There are exceptions. Even though...
- "git add" itself does not touch the files in the work tree, the
next checkout would, so the safety triggers;
- "git apply" to update a text file with a patch does touch the files
in the work tree, but the operation is about text files and CRLF
conversion is about fixing the line ending inconsistencies, so the
safety does not trigger;
- "git diff" itself does not touch the files in the work tree, it is
often run to inspect the changes you intend to next "git add". To
catch potential problems early, safety triggers.
The concept of a safety check was originally proposed in a similar
way by Linus Torvalds. Thanks to Dimitry Potapov for insisting
on getting the naked LF/autocrlf=true case right.
Signed-off-by: Steffen Prohaska <prohaska@zib.de>
2008-02-06 12:25:58 +01:00
|
|
|
catch potential problems early, safety triggers.
|
|
|
|
|
2007-04-20 05:48:03 +02:00
|
|
|
|
2007-04-22 04:09:02 +02:00
|
|
|
`ident`
|
|
|
|
^^^^^^^
|
|
|
|
|
2008-10-30 19:14:33 +01:00
|
|
|
When the attribute `ident` is set for a path, git replaces
|
|
|
|
`$Id$` in the blob object with `$Id:`, followed by the
|
2007-04-22 04:09:02 +02:00
|
|
|
40-character hexadecimal blob object name, followed by a dollar
|
|
|
|
sign `$` upon checkout. Any byte sequence that begins with
|
2007-05-14 15:37:25 +02:00
|
|
|
`$Id:` and ends with `$` in the worktree file is replaced
|
|
|
|
with `$Id$` upon check-in.
|
2007-04-22 04:09:02 +02:00
|
|
|
|
|
|
|
|
2007-04-21 12:14:13 +02:00
|
|
|
`filter`
|
|
|
|
^^^^^^^^
|
|
|
|
|
2007-11-14 08:51:41 +01:00
|
|
|
A `filter` attribute can be set to a string value that names a
|
2007-04-21 12:14:13 +02:00
|
|
|
filter driver specified in the configuration.
|
|
|
|
|
2007-11-14 08:51:41 +01:00
|
|
|
A filter driver consists of a `clean` command and a `smudge`
|
2007-04-21 12:14:13 +02:00
|
|
|
command, either of which can be left unspecified. Upon
|
2007-11-14 08:51:41 +01:00
|
|
|
checkout, when the `smudge` command is specified, the command is
|
|
|
|
fed the blob object from its standard input, and its standard
|
|
|
|
output is used to update the worktree file. Similarly, the
|
|
|
|
`clean` command is used to convert the contents of worktree file
|
|
|
|
upon checkin.
|
2007-04-21 12:14:13 +02:00
|
|
|
|
Add a setting to require a filter to be successful
By default, a missing filter driver or a failure from the filter driver is
not an error, but merely makes the filter operation a no-op pass through.
This is useful to massage the content into a shape that is more convenient
for the platform, filesystem, and the user to use, and the content filter
mechanism is not used to turn something unusable into usable.
However, we could also use of the content filtering mechanism and store
the content that cannot be directly used in the repository (e.g. a UUID
that refers to the true content stored outside git, or an encrypted
content) and turn it into a usable form upon checkout (e.g. download the
external content, or decrypt the encrypted content). For such a use case,
the content cannot be used when filter driver fails, and we need a way to
tell Git to abort the whole operation for such a failing or missing filter
driver.
Add a new "filter.<driver>.required" configuration variable to mark the
second use case. When it is set, git will abort the operation when the
filter driver does not exist or exits with a non-zero status code.
Signed-off-by: Jehan Bing <jehan@orb.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-02-17 02:19:03 +01:00
|
|
|
One use of the content filtering is to massage the content into a shape
|
|
|
|
that is more convenient for the platform, filesystem, and the user to use.
|
|
|
|
For this mode of operation, the key phrase here is "more convenient" and
|
|
|
|
not "turning something unusable into usable". In other words, the intent
|
|
|
|
is that if someone unsets the filter driver definition, or does not have
|
|
|
|
the appropriate filter program, the project should still be usable.
|
|
|
|
|
|
|
|
Another use of the content filtering is to store the content that cannot
|
|
|
|
be directly used in the repository (e.g. a UUID that refers to the true
|
|
|
|
content stored outside git, or an encrypted content) and turn it into a
|
|
|
|
usable form upon checkout (e.g. download the external content, or decrypt
|
|
|
|
the encrypted content).
|
|
|
|
|
|
|
|
These two filters behave differently, and by default, a filter is taken as
|
|
|
|
the former, massaging the contents into more convenient shape. A missing
|
|
|
|
filter driver definition in the config, or a filter driver that exits with
|
|
|
|
a non-zero status, is not an error but makes the filter a no-op passthru.
|
|
|
|
|
|
|
|
You can declare that a filter turns a content that by itself is unusable
|
|
|
|
into a usable content by setting the filter.<driver>.required configuration
|
|
|
|
variable to `true`.
|
2007-04-21 12:14:13 +02:00
|
|
|
|
2009-12-15 04:11:10 +01:00
|
|
|
For example, in .gitattributes, you would assign the `filter`
|
|
|
|
attribute for paths.
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
*.c filter=indent
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Then you would define a "filter.indent.clean" and "filter.indent.smudge"
|
|
|
|
configuration in your .git/config to specify a pair of commands to
|
|
|
|
modify the contents of C programs when the source files are checked
|
|
|
|
in ("clean" is run) and checked out (no change is made because the
|
|
|
|
command is "cat").
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
[filter "indent"]
|
|
|
|
clean = indent
|
|
|
|
smudge = cat
|
|
|
|
------------------------
|
|
|
|
|
2010-07-02 21:20:47 +02:00
|
|
|
For best results, `clean` should not alter its output further if it is
|
|
|
|
run twice ("clean->clean" should be equivalent to "clean"), and
|
|
|
|
multiple `smudge` commands should not alter `clean`'s output
|
|
|
|
("smudge->smudge->clean" should be equivalent to "clean"). See the
|
|
|
|
section on merging below.
|
|
|
|
|
|
|
|
The "indent" filter is well-behaved in this regard: it will not modify
|
|
|
|
input that is already correctly indented. In this case, the lack of a
|
|
|
|
smudge filter means that the clean filter _must_ accept its own output
|
|
|
|
without modifying it.
|
|
|
|
|
Add a setting to require a filter to be successful
By default, a missing filter driver or a failure from the filter driver is
not an error, but merely makes the filter operation a no-op pass through.
This is useful to massage the content into a shape that is more convenient
for the platform, filesystem, and the user to use, and the content filter
mechanism is not used to turn something unusable into usable.
However, we could also use of the content filtering mechanism and store
the content that cannot be directly used in the repository (e.g. a UUID
that refers to the true content stored outside git, or an encrypted
content) and turn it into a usable form upon checkout (e.g. download the
external content, or decrypt the encrypted content). For such a use case,
the content cannot be used when filter driver fails, and we need a way to
tell Git to abort the whole operation for such a failing or missing filter
driver.
Add a new "filter.<driver>.required" configuration variable to mark the
second use case. When it is set, git will abort the operation when the
filter driver does not exist or exits with a non-zero status code.
Signed-off-by: Jehan Bing <jehan@orb.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-02-17 02:19:03 +01:00
|
|
|
If a filter _must_ succeed in order to make the stored contents usable,
|
|
|
|
you can declare that the filter is `required`, in the configuration:
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
[filter "crypt"]
|
|
|
|
clean = openssl enc ...
|
|
|
|
smudge = openssl enc -d ...
|
|
|
|
required
|
|
|
|
------------------------
|
|
|
|
|
2010-12-22 15:40:13 +01:00
|
|
|
Sequence "%f" on the filter command line is replaced with the name of
|
|
|
|
the file the filter is working on. A filter might use this in keyword
|
|
|
|
substitution. For example:
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
[filter "p4"]
|
|
|
|
clean = git-p4-filter --clean %f
|
|
|
|
smudge = git-p4-filter --smudge %f
|
|
|
|
------------------------
|
|
|
|
|
2007-04-21 12:14:13 +02:00
|
|
|
|
|
|
|
Interaction between checkin/checkout attributes
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
In the check-in codepath, the worktree file is first converted
|
|
|
|
with `filter` driver (if specified and corresponding driver
|
|
|
|
defined), then the result is processed with `ident` (if
|
2010-05-19 22:43:11 +02:00
|
|
|
specified), and then finally with `text` (again, if specified
|
2007-04-21 12:14:13 +02:00
|
|
|
and applicable).
|
|
|
|
|
|
|
|
In the check-out codepath, the blob content is first converted
|
2010-05-19 22:43:11 +02:00
|
|
|
with `text`, and then `ident` and fed to `filter`.
|
2007-04-21 12:14:13 +02:00
|
|
|
|
|
|
|
|
2010-07-02 21:20:47 +02:00
|
|
|
Merging branches with differing checkin/checkout attributes
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
If you have added attributes to a file that cause the canonical
|
|
|
|
repository format for that file to change, such as adding a
|
|
|
|
clean/smudge filter or text/eol/ident attributes, merging anything
|
|
|
|
where the attribute is not in place would normally cause merge
|
|
|
|
conflicts.
|
|
|
|
|
|
|
|
To prevent these unnecessary merge conflicts, git can be told to run a
|
|
|
|
virtual check-out and check-in of all three stages of a file when
|
|
|
|
resolving a three-way merge by setting the `merge.renormalize`
|
|
|
|
configuration variable. This prevents changes caused by check-in
|
|
|
|
conversion from causing spurious merge conflicts when a converted file
|
|
|
|
is merged with an unconverted file.
|
|
|
|
|
|
|
|
As long as a "smudge->clean" results in the same output as a "clean"
|
|
|
|
even on files that are already smudged, this strategy will
|
|
|
|
automatically resolve all filter-related conflicts. Filters that do
|
|
|
|
not act in this way may cause additional merge conflicts that must be
|
|
|
|
resolved manually.
|
|
|
|
|
|
|
|
|
2007-04-20 05:48:03 +02:00
|
|
|
Generating diff text
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-11-01 07:24:55 +01:00
|
|
|
`diff`
|
|
|
|
^^^^^^
|
|
|
|
|
2008-10-26 05:41:52 +01:00
|
|
|
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. It can also affect what line is
|
|
|
|
shown on the hunk header `@@ -k,l +n,m @@` line, tell git to use an
|
|
|
|
external command to generate the diff, or ask git to convert binary
|
|
|
|
files to a text format before generating the diff.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
Set::
|
|
|
|
|
|
|
|
A path to which the `diff` attribute is set is treated
|
|
|
|
as text, even when they contain byte values that
|
|
|
|
normally never appear in text files, such as NUL.
|
|
|
|
|
|
|
|
Unset::
|
|
|
|
|
|
|
|
A path to which the `diff` attribute is unset will
|
2008-10-26 05:41:52 +01:00
|
|
|
generate `Binary files differ` (or a binary patch, if
|
|
|
|
binary patches are enabled).
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
Unspecified::
|
|
|
|
|
|
|
|
A path to which the `diff` attribute is unspecified
|
|
|
|
first gets its contents inspected, and if it looks like
|
|
|
|
text, it is treated as text. Otherwise it would
|
|
|
|
generate `Binary files differ`.
|
|
|
|
|
2007-04-23 09:21:02 +02:00
|
|
|
String::
|
|
|
|
|
2008-10-26 05:41:52 +01:00
|
|
|
Diff is shown using the specified diff driver. Each driver may
|
|
|
|
specify one or more options, as described in the following
|
|
|
|
section. The options for the diff driver "foo" are defined
|
|
|
|
by the configuration variables in the "diff.foo" section of the
|
|
|
|
git config file.
|
2007-04-23 09:21:02 +02:00
|
|
|
|
|
|
|
|
2008-10-26 05:41:52 +01:00
|
|
|
Defining an external diff driver
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2007-04-23 09:21:02 +02:00
|
|
|
|
|
|
|
The definition of a diff driver is done in `gitconfig`, not
|
|
|
|
`gitattributes` file, so strictly speaking this manual page is a
|
|
|
|
wrong place to talk about it. However...
|
|
|
|
|
2008-10-26 05:41:52 +01:00
|
|
|
To define an external diff driver `jcdiff`, add a section to your
|
2007-04-23 09:21:02 +02:00
|
|
|
`$GIT_DIR/config` file (or `$HOME/.gitconfig` file) like this:
|
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
[diff "jcdiff"]
|
|
|
|
command = j-c-diff
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
When git needs to show you a diff for the path with `diff`
|
|
|
|
attribute set to `jcdiff`, it calls the command you specified
|
|
|
|
with the above configuration, i.e. `j-c-diff`, with 7
|
|
|
|
parameters, just like `GIT_EXTERNAL_DIFF` program is called.
|
2008-06-06 09:07:32 +02:00
|
|
|
See linkgit:git[1] for details.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
|
2007-07-09 02:15:09 +02:00
|
|
|
Defining a custom hunk-header
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2008-09-17 08:20:39 +02:00
|
|
|
Each group of changes (called a "hunk") in the textual diff output
|
2007-07-09 02:15:09 +02:00
|
|
|
is prefixed with a line of the form:
|
|
|
|
|
|
|
|
@@ -k,l +n,m @@ TEXT
|
|
|
|
|
2008-09-17 08:20:39 +02:00
|
|
|
This is called a 'hunk header'. The "TEXT" portion is by default a line
|
|
|
|
that begins with an alphabet, an underscore or a dollar sign; this
|
|
|
|
matches what GNU 'diff -p' output uses. This default selection however
|
|
|
|
is not suited for some contents, and you can use a customized pattern
|
|
|
|
to make a selection.
|
2007-07-09 02:15:09 +02:00
|
|
|
|
2008-09-17 08:20:39 +02:00
|
|
|
First, in .gitattributes, you would assign the `diff` attribute
|
2007-07-09 02:15:09 +02:00
|
|
|
for paths.
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
*.tex diff=tex
|
|
|
|
------------------------
|
|
|
|
|
2008-09-29 19:23:19 +02:00
|
|
|
Then, you would define a "diff.tex.xfuncname" configuration to
|
2007-07-09 02:15:09 +02:00
|
|
|
specify a regular expression that matches a line that you would
|
2009-04-16 09:17:12 +02:00
|
|
|
want to appear as the hunk header "TEXT". Add a section to your
|
|
|
|
`$GIT_DIR/config` file (or `$HOME/.gitconfig` file) like this:
|
2007-07-09 02:15:09 +02:00
|
|
|
|
|
|
|
------------------------
|
|
|
|
[diff "tex"]
|
diff.*.xfuncname which uses "extended" regex's for hunk header selection
Currently, the hunk headers produced by 'diff -p' are customizable by
setting the diff.*.funcname option in the config file. The 'funcname' option
takes a basic regular expression. This functionality was designed using the
GNU regex library which, by default, allows using backslashed versions of
some extended regular expression operators, even in Basic Regular Expression
mode. For example, the following characters, when backslashed, are
interpreted according to the extended regular expression rules: ?, +, and |.
As such, the builtin funcname patterns were created using some extended
regular expression operators.
Other platforms which adhere more strictly to the POSIX spec do not
interpret the backslashed extended RE operators in Basic Regular Expression
mode. This causes the pattern matching for the builtin funcname patterns to
fail on those platforms.
Introduce a new option 'xfuncname' which uses extended regular expressions,
and advertise it _instead_ of funcname. Since most users are on GNU
platforms, the majority of funcname patterns are created and tested there.
Advertising only xfuncname should help to avoid the creation of non-portable
patterns which work with GNU regex but not elsewhere.
Additionally, the extended regular expressions may be less ugly and
complicated compared to the basic RE since many common special operators do
not need to be backslashed.
For example, the GNU Basic RE:
^[ ]*\\(\\(public\\|static\\).*\\)$
becomes the following Extended RE:
^[ ]*((public|static).*)$
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-09-19 00:44:33 +02:00
|
|
|
xfuncname = "^(\\\\(sub)*section\\{.*)$"
|
2007-07-09 02:15:09 +02:00
|
|
|
------------------------
|
|
|
|
|
|
|
|
Note. A single level of backslashes are eaten by the
|
|
|
|
configuration file parser, so you would need to double the
|
|
|
|
backslashes; the pattern above picks a line that begins with a
|
2007-08-24 02:44:13 +02:00
|
|
|
backslash, and zero or more occurrences of `sub` followed by
|
2007-07-09 02:15:09 +02:00
|
|
|
`section` followed by open brace, to the end of line.
|
|
|
|
|
|
|
|
There are a few built-in patterns to make this easier, and `tex`
|
|
|
|
is one of them, so you do not have to write the above in your
|
|
|
|
configuration file (you still need to enable this with the
|
2008-08-12 16:24:25 +02:00
|
|
|
attribute mechanism, via `.gitattributes`). The following built in
|
|
|
|
patterns are available:
|
|
|
|
|
2008-08-12 16:24:26 +02:00
|
|
|
- `bibtex` suitable for files with BibTeX coded references.
|
|
|
|
|
2009-01-17 17:29:48 +01:00
|
|
|
- `cpp` suitable for source code in the C and C++ languages.
|
|
|
|
|
2010-08-16 19:01:02 +02:00
|
|
|
- `csharp` suitable for source code in the C# language.
|
|
|
|
|
2010-09-10 18:18:14 +02:00
|
|
|
- `fortran` suitable for source code in the Fortran language.
|
|
|
|
|
2008-09-07 22:15:29 +02:00
|
|
|
- `html` suitable for HTML/XHTML documents.
|
|
|
|
|
2008-09-12 21:10:26 +02:00
|
|
|
- `java` suitable for source code in the Java language.
|
2008-08-12 16:24:25 +02:00
|
|
|
|
2011-11-15 21:15:03 +01:00
|
|
|
- `matlab` suitable for source code in the MATLAB language.
|
|
|
|
|
2008-10-01 01:46:34 +02:00
|
|
|
- `objc` suitable for source code in the Objective-C language.
|
|
|
|
|
2008-08-12 16:24:25 +02:00
|
|
|
- `pascal` suitable for source code in the Pascal/Delphi language.
|
|
|
|
|
2010-12-26 10:07:31 +01:00
|
|
|
- `perl` suitable for source code in the Perl language.
|
|
|
|
|
2008-09-07 22:15:29 +02:00
|
|
|
- `php` suitable for source code in the PHP language.
|
|
|
|
|
2008-08-20 17:57:07 +02:00
|
|
|
- `python` suitable for source code in the Python language.
|
|
|
|
|
2008-08-12 16:24:25 +02:00
|
|
|
- `ruby` suitable for source code in the Ruby language.
|
|
|
|
|
|
|
|
- `tex` suitable for source code for LaTeX documents.
|
2007-07-09 02:15:09 +02:00
|
|
|
|
|
|
|
|
2009-01-17 17:29:48 +01:00
|
|
|
Customizing word diff
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2010-04-14 17:59:06 +02:00
|
|
|
You can customize the rules that `git diff --word-diff` uses to
|
2009-01-17 17:29:48 +01:00
|
|
|
split words in a line, by specifying an appropriate regular expression
|
2009-01-21 05:59:54 +01:00
|
|
|
in the "diff.*.wordRegex" configuration variable. For example, in TeX
|
2009-01-17 17:29:48 +01:00
|
|
|
a backslash followed by a sequence of letters forms a command, but
|
|
|
|
several such commands can be run together without intervening
|
2009-04-16 09:17:12 +02:00
|
|
|
whitespace. To separate them, use a regular expression in your
|
|
|
|
`$GIT_DIR/config` file (or `$HOME/.gitconfig` file) like this:
|
2009-01-17 17:29:48 +01:00
|
|
|
|
|
|
|
------------------------
|
|
|
|
[diff "tex"]
|
2009-01-21 05:59:54 +01:00
|
|
|
wordRegex = "\\\\[a-zA-Z]+|[{}]|\\\\.|[^\\{}[:space:]]+"
|
2009-01-17 17:29:48 +01:00
|
|
|
------------------------
|
|
|
|
|
|
|
|
A built-in pattern is provided for all languages listed in the
|
|
|
|
previous section.
|
|
|
|
|
|
|
|
|
2008-10-26 05:41:52 +01:00
|
|
|
Performing text diffs of binary files
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Sometimes it is desirable to see the diff of a text-converted
|
|
|
|
version of some binary files. For example, a word processor
|
|
|
|
document can be converted to an ASCII text representation, and
|
|
|
|
the diff of the text shown. Even though this conversion loses
|
|
|
|
some information, the resulting diff is useful for human
|
|
|
|
viewing (but cannot be applied directly).
|
|
|
|
|
|
|
|
The `textconv` config option is used to define a program for
|
|
|
|
performing such a conversion. The program should take a single
|
|
|
|
argument, the name of a file to convert, and produce the
|
|
|
|
resulting text on stdout.
|
|
|
|
|
|
|
|
For example, to show the diff of the exif information of a
|
|
|
|
file instead of the binary information (assuming you have the
|
2009-04-16 09:17:12 +02:00
|
|
|
exif tool installed), add the following section to your
|
|
|
|
`$GIT_DIR/config` file (or `$HOME/.gitconfig` file):
|
2008-10-26 05:41:52 +01:00
|
|
|
|
|
|
|
------------------------
|
|
|
|
[diff "jpg"]
|
|
|
|
textconv = exif
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
NOTE: The text conversion is generally a one-way conversion;
|
|
|
|
in this example, we lose the actual image contents and focus
|
|
|
|
just on the text data. This means that diffs generated by
|
|
|
|
textconv are _not_ suitable for applying. For this reason,
|
|
|
|
only `git diff` and the `git log` family of commands (i.e.,
|
|
|
|
log, whatchanged, show) will perform text conversion. `git
|
|
|
|
format-patch` will never generate this output. If you want to
|
|
|
|
send somebody a text-converted diff of a binary file (e.g.,
|
|
|
|
because it quickly conveys the changes you have made), you
|
|
|
|
should generate it separately and send it as a comment _in
|
|
|
|
addition to_ the usual binary diff that you might send.
|
|
|
|
|
2010-04-02 02:12:15 +02:00
|
|
|
Because text conversion can be slow, especially when doing a
|
|
|
|
large number of them with `git log -p`, git provides a mechanism
|
|
|
|
to cache the output and use it in future diffs. To enable
|
|
|
|
caching, set the "cachetextconv" variable in your diff driver's
|
|
|
|
config. For example:
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
[diff "jpg"]
|
|
|
|
textconv = exif
|
|
|
|
cachetextconv = true
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
This will cache the result of running "exif" on each blob
|
|
|
|
indefinitely. If you change the textconv config variable for a
|
|
|
|
diff driver, git will automatically invalidate the cache entries
|
|
|
|
and re-run the textconv filter. If you want to invalidate the
|
|
|
|
cache manually (e.g., because your version of "exif" was updated
|
|
|
|
and now produces better output), you can remove the cache
|
|
|
|
manually with `git update-ref -d refs/notes/textconv/jpg` (where
|
|
|
|
"jpg" is the name of the diff driver, as in the example above).
|
2008-10-26 05:41:52 +01:00
|
|
|
|
2011-05-24 21:45:27 +02:00
|
|
|
Choosing textconv versus external diff
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
If you want to show differences between binary or specially-formatted
|
|
|
|
blobs in your repository, you can choose to use either an external diff
|
|
|
|
command, or to use textconv to convert them to a diff-able text format.
|
|
|
|
Which method you choose depends on your exact situation.
|
|
|
|
|
|
|
|
The advantage of using an external diff command is flexibility. You are
|
|
|
|
not bound to find line-oriented changes, nor is it necessary for the
|
|
|
|
output to resemble unified diff. You are free to locate and report
|
|
|
|
changes in the most appropriate way for your data format.
|
|
|
|
|
|
|
|
A textconv, by comparison, is much more limiting. You provide a
|
|
|
|
transformation of the data into a line-oriented text format, and git
|
|
|
|
uses its regular diff tools to generate the output. There are several
|
|
|
|
advantages to choosing this method:
|
|
|
|
|
|
|
|
1. Ease of use. It is often much simpler to write a binary to text
|
|
|
|
transformation than it is to perform your own diff. In many cases,
|
|
|
|
existing programs can be used as textconv filters (e.g., exif,
|
|
|
|
odt2txt).
|
|
|
|
|
|
|
|
2. Git diff features. By performing only the transformation step
|
|
|
|
yourself, you can still utilize many of git's diff features,
|
|
|
|
including colorization, word-diff, and combined diffs for merges.
|
|
|
|
|
|
|
|
3. Caching. Textconv caching can speed up repeated diffs, such as those
|
|
|
|
you might trigger by running `git log -p`.
|
|
|
|
|
|
|
|
|
2011-01-09 21:10:04 +01:00
|
|
|
Marking files as binary
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Git usually guesses correctly whether a blob contains text or binary
|
|
|
|
data by examining the beginning of the contents. However, sometimes you
|
|
|
|
may want to override its decision, either because a blob contains binary
|
|
|
|
data later in the file, or because the content, while technically
|
|
|
|
composed of text characters, is opaque to a human reader. For example,
|
|
|
|
many postscript files contain only ascii characters, but produce noisy
|
|
|
|
and meaningless diffs.
|
|
|
|
|
|
|
|
The simplest way to mark a file as binary is to unset the diff
|
|
|
|
attribute in the `.gitattributes` file:
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
*.ps -diff
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
This will cause git to generate `Binary files differ` (or a binary
|
|
|
|
patch, if binary patches are enabled) instead of a regular diff.
|
|
|
|
|
|
|
|
However, one may also want to specify other diff driver attributes. For
|
|
|
|
example, you might want to use `textconv` to convert postscript files to
|
|
|
|
an ascii representation for human viewing, but otherwise treat them as
|
|
|
|
binary files. You cannot specify both `-diff` and `diff=ps` attributes.
|
|
|
|
The solution is to use the `diff.*.binary` config option:
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
[diff "ps"]
|
|
|
|
textconv = ps2ascii
|
|
|
|
binary = true
|
|
|
|
------------------------
|
|
|
|
|
2007-04-20 05:48:03 +02:00
|
|
|
Performing a three-way merge
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-11-01 07:24:55 +01:00
|
|
|
`merge`
|
|
|
|
^^^^^^^
|
|
|
|
|
2011-03-18 14:14:27 +01:00
|
|
|
The attribute `merge` affects how three versions of a file are
|
2007-04-20 05:48:03 +02:00
|
|
|
merged when a file-level merge is necessary during `git merge`,
|
2009-08-07 16:24:21 +02:00
|
|
|
and other commands such as `git revert` and `git cherry-pick`.
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
Set::
|
|
|
|
|
|
|
|
Built-in 3-way merge driver is used to merge the
|
2008-07-03 07:55:07 +02:00
|
|
|
contents in a way similar to 'merge' command of `RCS`
|
2007-04-20 05:48:03 +02:00
|
|
|
suite. This is suitable for ordinary text files.
|
|
|
|
|
|
|
|
Unset::
|
|
|
|
|
|
|
|
Take the version from the current branch as the
|
|
|
|
tentative merge result, and declare that the merge has
|
2011-03-18 14:14:27 +01:00
|
|
|
conflicts. This is suitable for binary files that do
|
2007-04-20 05:48:03 +02:00
|
|
|
not have a well-defined merge semantics.
|
|
|
|
|
|
|
|
Unspecified::
|
|
|
|
|
|
|
|
By default, this uses the same built-in 3-way merge
|
2011-03-18 14:14:27 +01:00
|
|
|
driver as is the case when the `merge` attribute is set.
|
|
|
|
However, the `merge.default` configuration variable can name
|
|
|
|
different merge driver to be used with paths for which the
|
2007-04-20 05:48:03 +02:00
|
|
|
`merge` attribute is unspecified.
|
|
|
|
|
2007-04-23 09:21:02 +02:00
|
|
|
String::
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
3-way merge is performed using the specified custom
|
|
|
|
merge driver. The built-in 3-way merge driver can be
|
|
|
|
explicitly specified by asking for "text" driver; the
|
|
|
|
built-in "take the current branch" driver can be
|
2007-04-24 22:46:02 +02:00
|
|
|
requested with "binary".
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
|
2007-12-23 08:14:59 +01:00
|
|
|
Built-in merge drivers
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
There are a few built-in low-level merge drivers defined that
|
|
|
|
can be asked for via the `merge` attribute.
|
|
|
|
|
|
|
|
text::
|
|
|
|
|
|
|
|
Usual 3-way file level merge for text files. Conflicted
|
|
|
|
regions are marked with conflict markers `<<<<<<<`,
|
|
|
|
`=======` and `>>>>>>>`. The version from your branch
|
|
|
|
appears before the `=======` marker, and the version
|
|
|
|
from the merged branch appears after the `=======`
|
|
|
|
marker.
|
|
|
|
|
|
|
|
binary::
|
|
|
|
|
|
|
|
Keep the version from your branch in the work tree, but
|
|
|
|
leave the path in the conflicted state for the user to
|
|
|
|
sort out.
|
|
|
|
|
|
|
|
union::
|
|
|
|
|
|
|
|
Run 3-way file level merge for text files, but take
|
|
|
|
lines from both versions, instead of leaving conflict
|
|
|
|
markers. This tends to leave the added lines in the
|
|
|
|
resulting file in random order and the user should
|
|
|
|
verify the result. Do not use this if you do not
|
|
|
|
understand the implications.
|
|
|
|
|
|
|
|
|
2007-04-20 05:48:03 +02:00
|
|
|
Defining a custom merge driver
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2007-12-23 08:14:59 +01:00
|
|
|
The definition of a merge driver is done in the `.git/config`
|
|
|
|
file, not in the `gitattributes` file, so strictly speaking this
|
|
|
|
manual page is a wrong place to talk about it. However...
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
To define a custom merge driver `filfre`, add a section to your
|
|
|
|
`$GIT_DIR/config` file (or `$HOME/.gitconfig` file) like this:
|
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
[merge "filfre"]
|
|
|
|
name = feel-free merge driver
|
|
|
|
driver = filfre %O %A %B
|
|
|
|
recursive = binary
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
The `merge.*.name` variable gives the driver a human-readable
|
|
|
|
name.
|
|
|
|
|
|
|
|
The `merge.*.driver` variable's value is used to construct a
|
|
|
|
command to run to merge ancestor's version (`%O`), current
|
|
|
|
version (`%A`) and the other branches' version (`%B`). These
|
|
|
|
three tokens are replaced with the names of temporary files that
|
|
|
|
hold the contents of these versions when the command line is
|
2010-02-23 21:11:12 +01:00
|
|
|
built. Additionally, %L will be replaced with the conflict marker
|
|
|
|
size (see below).
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
The merge driver is expected to leave the result of the merge in
|
|
|
|
the file named with `%A` by overwriting it, and exit with zero
|
|
|
|
status if it managed to merge them cleanly, or non-zero if there
|
|
|
|
were conflicts.
|
|
|
|
|
|
|
|
The `merge.*.recursive` variable specifies what other merge
|
|
|
|
driver to use when the merge driver is called for an internal
|
|
|
|
merge between common ancestors, when there are more than one.
|
|
|
|
When left unspecified, the driver itself is used for both
|
|
|
|
internal merge and the final merge.
|
|
|
|
|
|
|
|
|
2010-01-21 08:49:27 +01:00
|
|
|
`conflict-marker-size`
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
This attribute controls the length of conflict markers left in
|
|
|
|
the work tree file during a conflicted merge. Only setting to
|
|
|
|
the value to a positive integer has any meaningful effect.
|
|
|
|
|
|
|
|
For example, this line in `.gitattributes` can be used to tell the merge
|
|
|
|
machinery to leave much longer (instead of the usual 7-character-long)
|
|
|
|
conflict markers when merging the file `Documentation/git-merge.txt`
|
|
|
|
results in a conflict.
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
Documentation/git-merge.txt conflict-marker-size=32
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
|
2007-12-06 09:14:14 +01:00
|
|
|
Checking whitespace errors
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
`whitespace`
|
|
|
|
^^^^^^^^^^^^
|
|
|
|
|
|
|
|
The `core.whitespace` configuration variable allows you to define what
|
2008-07-03 07:55:07 +02:00
|
|
|
'diff' and 'apply' should consider whitespace errors for all paths in
|
2007-12-29 07:20:38 +01:00
|
|
|
the project (See linkgit:git-config[1]). This attribute gives you finer
|
2007-12-06 09:14:14 +01:00
|
|
|
control per path.
|
|
|
|
|
|
|
|
Set::
|
|
|
|
|
|
|
|
Notice all types of potential whitespace errors known to git.
|
2010-11-30 09:29:11 +01:00
|
|
|
The tab width is taken from the value of the `core.whitespace`
|
|
|
|
configuration variable.
|
2007-12-06 09:14:14 +01:00
|
|
|
|
|
|
|
Unset::
|
|
|
|
|
|
|
|
Do not notice anything as error.
|
|
|
|
|
|
|
|
Unspecified::
|
|
|
|
|
2010-11-30 09:29:11 +01:00
|
|
|
Use the value of the `core.whitespace` configuration variable to
|
2007-12-06 09:14:14 +01:00
|
|
|
decide what to notice as error.
|
|
|
|
|
|
|
|
String::
|
|
|
|
|
|
|
|
Specify a comma separate list of common whitespace problems to
|
2010-11-30 09:29:11 +01:00
|
|
|
notice in the same format as the `core.whitespace` configuration
|
2007-12-06 09:14:14 +01:00
|
|
|
variable.
|
|
|
|
|
|
|
|
|
2008-07-06 03:14:27 +02:00
|
|
|
Creating an archive
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-07-06 03:33:16 +02:00
|
|
|
`export-ignore`
|
|
|
|
^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Files and directories with the attribute `export-ignore` won't be added to
|
|
|
|
archive files.
|
|
|
|
|
2008-07-06 03:14:27 +02:00
|
|
|
`export-subst`
|
|
|
|
^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
If the attribute `export-subst` is set for a file then git will expand
|
|
|
|
several placeholders when adding this file to an archive. The
|
2008-07-06 03:33:16 +02:00
|
|
|
expansion depends on the availability of a commit ID, i.e., if
|
2008-07-06 03:14:27 +02:00
|
|
|
linkgit:git-archive[1] has been given a tree instead of a commit or a
|
|
|
|
tag then no replacement will be done. The placeholders are the same
|
|
|
|
as those for the option `--pretty=format:` of linkgit:git-log[1],
|
|
|
|
except that they need to be wrapped like this: `$Format:PLACEHOLDERS$`
|
|
|
|
in the file. E.g. the string `$Format:%H$` will be replaced by the
|
|
|
|
commit hash.
|
|
|
|
|
|
|
|
|
2009-10-21 23:06:21 +02:00
|
|
|
Packing objects
|
|
|
|
~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
`delta`
|
|
|
|
^^^^^^^
|
|
|
|
|
|
|
|
Delta compression will not be attempted for blobs for paths with the
|
|
|
|
attribute `delta` set to false.
|
|
|
|
|
|
|
|
|
2008-11-13 18:28:49 +01:00
|
|
|
Viewing files in GUI tools
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
`encoding`
|
|
|
|
^^^^^^^^^^
|
|
|
|
|
|
|
|
The value of this attribute specifies the character encoding that should
|
|
|
|
be used by GUI tools (e.g. linkgit:gitk[1] and linkgit:git-gui[1]) to
|
|
|
|
display the contents of the relevant file. Note that due to performance
|
|
|
|
considerations linkgit:gitk[1] does not use this attribute unless you
|
|
|
|
manually enable per-file encodings in its options.
|
|
|
|
|
|
|
|
If this attribute is not set or has an invalid value, the value of the
|
|
|
|
`gui.encoding` configuration variable is used instead
|
|
|
|
(See linkgit:git-config[1]).
|
|
|
|
|
|
|
|
|
2011-08-03 15:41:30 +02:00
|
|
|
USING MACRO ATTRIBUTES
|
2008-08-30 23:35:15 +02:00
|
|
|
----------------------
|
|
|
|
|
|
|
|
You do not want any end-of-line conversions applied to, nor textual diffs
|
|
|
|
produced for, any binary file you track. You would need to specify e.g.
|
|
|
|
|
|
|
|
------------
|
2010-05-19 22:43:11 +02:00
|
|
|
*.jpg -text -diff
|
2008-08-30 23:35:15 +02:00
|
|
|
------------
|
|
|
|
|
|
|
|
but that may become cumbersome, when you have many attributes. Using
|
2011-08-03 15:41:30 +02:00
|
|
|
macro attributes, you can define an attribute that, when set, also
|
2011-08-03 15:41:29 +02:00
|
|
|
sets or unsets a number of other attributes at the same time. The
|
2011-08-03 15:41:30 +02:00
|
|
|
system knows a built-in macro attribute, `binary`:
|
2008-08-30 23:35:15 +02:00
|
|
|
|
|
|
|
------------
|
|
|
|
*.jpg binary
|
|
|
|
------------
|
|
|
|
|
2011-08-03 15:41:29 +02:00
|
|
|
Setting the "binary" attribute also unsets the "text" and "diff"
|
2011-08-03 15:41:30 +02:00
|
|
|
attributes as above. Note that macro attributes can only be "Set",
|
2011-08-03 15:41:29 +02:00
|
|
|
though setting one might have the effect of setting or unsetting other
|
|
|
|
attributes or even returning other attributes to the "Unspecified"
|
|
|
|
state.
|
2008-08-30 23:35:15 +02:00
|
|
|
|
|
|
|
|
2011-08-03 15:41:30 +02:00
|
|
|
DEFINING MACRO ATTRIBUTES
|
2008-08-30 23:35:15 +02:00
|
|
|
-------------------------
|
|
|
|
|
2011-08-03 15:41:30 +02:00
|
|
|
Custom macro attributes can be defined only in the `.gitattributes`
|
|
|
|
file at the toplevel (i.e. not in any subdirectory). The built-in
|
|
|
|
macro attribute "binary" is equivalent to:
|
2008-08-30 23:35:15 +02:00
|
|
|
|
|
|
|
------------
|
2010-05-19 22:43:11 +02:00
|
|
|
[attr]binary -diff -text
|
2008-08-30 23:35:15 +02:00
|
|
|
------------
|
|
|
|
|
|
|
|
|
2007-04-20 05:48:03 +02:00
|
|
|
EXAMPLE
|
|
|
|
-------
|
|
|
|
|
|
|
|
If you have these three `gitattributes` file:
|
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
(in $GIT_DIR/info/attributes)
|
|
|
|
|
|
|
|
a* foo !bar -baz
|
|
|
|
|
|
|
|
(in .gitattributes)
|
|
|
|
abc foo bar baz
|
|
|
|
|
|
|
|
(in t/.gitattributes)
|
|
|
|
ab* merge=filfre
|
|
|
|
abc -foo -bar
|
|
|
|
*.c frotz
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
the attributes given to path `t/abc` are computed as follows:
|
|
|
|
|
|
|
|
1. By examining `t/.gitattributes` (which is in the same
|
2007-08-24 02:44:13 +02:00
|
|
|
directory as the path in question), git finds that the first
|
2007-04-20 05:48:03 +02:00
|
|
|
line matches. `merge` attribute is set. It also finds that
|
|
|
|
the second line matches, and attributes `foo` and `bar`
|
|
|
|
are unset.
|
|
|
|
|
|
|
|
2. Then it examines `.gitattributes` (which is in the parent
|
|
|
|
directory), and finds that the first line matches, but
|
|
|
|
`t/.gitattributes` file already decided how `merge`, `foo`
|
|
|
|
and `bar` attributes should be given to this path, so it
|
|
|
|
leaves `foo` and `bar` unset. Attribute `baz` is set.
|
|
|
|
|
2007-07-30 03:50:24 +02:00
|
|
|
3. Finally it examines `$GIT_DIR/info/attributes`. This file
|
2007-04-20 05:48:03 +02:00
|
|
|
is used to override the in-tree settings. The first line is
|
|
|
|
a match, and `foo` is set, `bar` is reverted to unspecified
|
|
|
|
state, and `baz` is unset.
|
|
|
|
|
2007-08-24 02:44:13 +02:00
|
|
|
As the result, the attributes assignment to `t/abc` becomes:
|
2007-04-20 05:48:03 +02:00
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
foo set to true
|
|
|
|
bar unspecified
|
|
|
|
baz set to false
|
|
|
|
merge set to string value "filfre"
|
|
|
|
frotz unspecified
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2011-08-04 06:36:11 +02:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
linkgit:git-check-attr[1].
|
2007-09-03 20:07:01 +02:00
|
|
|
|
2007-04-20 05:48:03 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|