Skip to main content
ubuntuask.com

Back to all posts

How to Mark A File As Not Binary In Git?

Published on
3 min read
How to Mark A File As Not Binary In Git? image

Best Tools for Managing Git Files to Buy in October 2025

1 Learning Git: A Hands-On and Visual Guide to the Basics of Git

Learning Git: A Hands-On and Visual Guide to the Basics of Git

BUY & SAVE
$34.92 $45.99
Save 24%
Learning Git: A Hands-On and Visual Guide to the Basics of Git
2 Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development

Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development

BUY & SAVE
$43.23 $65.99
Save 34%
Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development
3 Professional Git

Professional Git

BUY & SAVE
$24.79 $52.00
Save 52%
Professional Git
4 Version Control with Git: Powerful tools and techniques for collaborative software development

Version Control with Git: Powerful tools and techniques for collaborative software development

  • AFFORDABLE PRICES ON QUALITY PRE-OWNED BOOKS AVAILABLE NOW!
  • ECO-FRIENDLY CHOICE: HELP REDUCE WASTE WITH EVERY PURCHASE.
  • DIVERSE SELECTION: DISCOVER HIDDEN GEMS IN OUR VAST COLLECTION!
BUY & SAVE
$42.44 $44.99
Save 6%
Version Control with Git: Powerful tools and techniques for collaborative software development
5 Head First Git: A Learner's Guide to Understanding Git from the Inside Out

Head First Git: A Learner's Guide to Understanding Git from the Inside Out

BUY & SAVE
$50.99 $79.99
Save 36%
Head First Git: A Learner's Guide to Understanding Git from the Inside Out
6 Git Commands Cheat Sheet Reference Guide – Essential Git Command Quick Guide for Beginners Developers

Git Commands Cheat Sheet Reference Guide – Essential Git Command Quick Guide for Beginners Developers

BUY & SAVE
$14.99
Git Commands Cheat Sheet Reference Guide – Essential Git Command Quick Guide for Beginners Developers
7 Pro Git

Pro Git

BUY & SAVE
$31.02 $59.99
Save 48%
Pro Git
8 Git Prodigy: Mastering Version Control with Git and GitHub

Git Prodigy: Mastering Version Control with Git and GitHub

BUY & SAVE
$19.00
Git Prodigy: Mastering Version Control with Git and GitHub
9 Pragmatic Guide to Git (Pragmatic Programmers)

Pragmatic Guide to Git (Pragmatic Programmers)

  • AFFORDABLE PRICES FOR HIGH-QUALITY PRE-LOVED READS.
  • ECO-FRIENDLY CHOICE: REDUCE WASTE BY BUYING USED!
  • UNIQUE FINDS: DISCOVER RARE TITLES AT UNBEATABLE PRICES!
BUY & SAVE
$7.90 $25.00
Save 68%
Pragmatic Guide to Git (Pragmatic Programmers)
10 50pc GIT INDUSTRIAL TOOL MOUNTED GRINDING STONE ASSORTMENT BITS 1/4" DRILL MSA50

50pc GIT INDUSTRIAL TOOL MOUNTED GRINDING STONE ASSORTMENT BITS 1/4" DRILL MSA50

  • DURABLE CONSTRUCTION ENSURES LONGEVITY FOR HEAVY-DUTY TASKS.
  • TRUSTED BRAND REPUTATION ENHANCES CONSUMER CONFIDENCE.
  • COST-EFFECTIVE MANUFACTURING FOR COMPETITIVE PRICING ADVANTAGE.
BUY & SAVE
$22.95
50pc GIT INDUSTRIAL TOOL MOUNTED GRINDING STONE ASSORTMENT BITS 1/4" DRILL MSA50
+
ONE MORE?

To mark a file as not binary in git, you can set the file's content as text by using the command git add --renormalize <filename>. This command will update the index to be consistent with the latest ".gitattributes" file. The ".gitattributes" file allows you to specify how Git treats files based on their attributes, such as specifying that a file is text and not binary. By setting a file as not binary, Git will treat it as a regular text file and properly handle line endings and other text-related operations. This can be useful when working with files that should not be treated as binary, such as source code files.

How to change the binary attribute of a file in git?

To change the binary attribute of a file in Git, you can follow these steps:

  1. Find the file you want to change the binary attribute for in your Git repository.
  2. Use the following command to change the binary attribute for the file:

git add --renormalize <file_path>

This command tells Git to re-scan the file and update its attributes, including the binary attribute.

  1. Commit the changes to the file:

git commit -m "Change binary attribute of file"

  1. Push the changes to the remote repository if needed:

git push

After following these steps, the binary attribute of the file should be successfully changed in Git.

How to identify and mark a binary file as non-binary in git?

To mark a binary file as non-binary in git, you can use the following steps:

  1. Identify the binary files: Look for files with binary data such as images, videos, executables, etc.
  2. Mark the file as non-binary in the .gitattributes file: Open the .gitattributes file in the root directory of your git repository and add the file extension of the binary file followed by -binary to mark it as non-binary. For example, if you want to mark a .jpg file as non-binary, add the following line to the .gitattributes file: *.jpg -binary
  3. Add and commit the changes: After updating the .gitattributes file, add and commit the changes to make the file non-binary in git.

By following these steps, you can identify and mark a binary file as non-binary in git.

How to exclude a specific file from binary detection in git?

To exclude a specific file from binary detection in Git, you can use the .gitattributes file in your repository.

  1. Create a .gitattributes file in the root of your repository if it doesn't already exist.
  2. Add the path to the specific file you want to exclude from binary detection in the .gitattributes file. For example, if you want to exclude a file named example.jpg, you can add the following line to the .gitattributes file:

example.jpg -diff

This tells Git not to attempt binary detection on the specified file.

  1. Save the .gitattributes file and commit the changes to your repository.

Now Git will exclude the specific file from binary detection and treat it as a binary file without attempting to diff it.