2020-07-28 14:09:36 -04:00
---
stage: Create
group: Source Code
2020-11-26 01:09:20 -05:00
info: "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments"
2020-07-28 14:09:36 -04:00
type: reference
---
2021-02-09 13:09:59 -05:00
# Git Attributes **(FREE)**
2016-10-12 08:51:56 -04:00
2020-04-21 11:21:10 -04:00
GitLab supports defining custom [Git attributes ](https://git-scm.com/docs/gitattributes ) such as what
2016-10-12 08:51:56 -04:00
files to treat as binary, and what language to use for syntax highlighting
diffs.
To define these attributes, create a file called `.gitattributes` in the root
directory of your repository and push it to the default branch of your project.
## Encoding Requirements
The `.gitattributes` file _must_ be encoded in UTF-8 and _must not_ contain a
2021-03-08 13:09:12 -05:00
Byte Order Mark. If a different encoding is used, the file's contents are
2016-10-12 08:51:56 -04:00
ignored.
## Syntax Highlighting
The `.gitattributes` file can be used to define which language to use when
syntax highlighting files and diffs. See ["Syntax
Highlighting"](highlighting.md) for more information.