JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Add file entries to the gitignore file in Git

Author:JIYIK Last Updated:2025/03/27 Views:

This tutorial will discuss adding file entries to files in Git .gitignore.


.gitignoreAdd a file entry to a file in Git

Git tracks changes to all files in the project directory of the Git repository. We may want to disable tracking of specific files in the Git repository.

Typically, files that we wish to ignore from tracing are those created as part of the build process, temporary files, or system-generated files.

Some common file types that are often ignored when tracking in Git repositories are as follows:

  • Code files created during compilation, such as .o, , .pycor .class;
  • The output directory of the build, for example /bin, /outor /target;
  • Runtime generated files, such as .log, , .lockor .tmp;
  • Hidden system files such as .DS_Storeor Thumbs.db;
  • Configuration files for personal IDEs, for example .idea/workspace.xml;
  • Editor temporary files, such as .swpor .swo(generated by the Vim editor);
  • Package files or compressed files, such as .jar, .war, .nar, .zip, .tar, .gzor .rar.

We can use Git's .gitignorefile feature to ignore tracking of a file. It is a special file that is usually checked in at the root of the project directory in the Git repository.

There is no special command to trigger the ignore process. Whenever we have new files that we wish to ignore, we need to update .gitignorethe ./install/ignore/file and commit it to the repository.

We need to add patterns in the file that match the file names in the Git repository .gitignoreto decide whether to add or ignore them.

Following are .gitignorethe wildcard patterns used to match file names.

  • .logIgnore .loglog files with extensions in directories, e.g. debug.log, .log, logs/debug.log
  • /binIgnore binFolder
  • .classIgnore compiled class files
  • .tmpIgnore tmp(temporary) files
  • logslogsIgnore the contents of files and directories named .

By convention, we can place .gitignorefiles in the top-level directory of the repository. We can also add multiple files in subdirectories .gitignore.

.gitignorePatterns in a particular file are tested relative to the directory containing the file.

See .gitignorean excerpt from the example file below.

$ cat .gitignore
# ignore the bin folders
**/bin/

# Compiled class file
*.class

# Log file
*.log

# tmp files
*.tmp

# Vim temp files
*.swp
*.swo
...

Add a #comment to the file.

We can also add personal ignore patterns in local system repository. We need to add them to git/info/excludea specific file in the location in local system.

This is not version controlled, nor is it committed and distributed with our repository.

We can also define global Git ignore patterns for all repositories present in the local system. We need to set Git global properties core.excludesFile.

So, for example, we can add the global ./opt/opt/ssl.sh file in our home directory .gitignoreand git configconfigure its location using the ./opt/ssl.sh command as shown below.

$ touch ~/.gitignore
$ git config --global core.excludesFile ~/.gitignore

We have learned how to add file entries to .gitignorefiles in Git.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Adding files in Git

Publish Date:2025/03/27 Views:74 Category:Git

This article will discuss different ways to add files to our repository on Git. In Git, use git add the command to add all files We can git add add all the files without exception using the command as shown below. git add -A -A The -p param

Different ways to add files to staging with Git

Publish Date:2025/03/27 Views:199 Category:Git

While the command git add is probably the most commonly used command for adding files to your stash, other flags may come in handy depending on the situation. This article takes a deep dive into git add the flags you can use with the comman

Git add folder

Publish Date:2025/03/27 Views:100 Category:Git

git add Used to add specific folders and files. This tutorial will handle it in a modern way git add folder . git add Add all or specific folders and files to staging in Git using Use the following syntax to add files: git add file Use the

Recursively add files and folders in Git

Publish Date:2025/03/27 Views:136 Category:Git

Sometimes, we come across a situation where we have to adjust some files, folders, and subfolders that already exist in Git. A part of a nested folder system has to be added remotely to Git. This article will discuss how to use commands to

Undoing rm in Git

Publish Date:2025/03/27 Views:79 Category:Git

In Git, the term rm is git remove an alias for the command. So it is used to remove a single file or a bunch of files from the repository. git rm The main functionality of in Git is to remove tracked files using Git index. However, git rm i

Revert a file to a previous commit in Git

Publish Date:2025/03/27 Views:170 Category:Git

Git is a version control system. We use it to track changes made to files in a project directory. In a collaborative development environment, many team members often work on the same files and make changes to them. We often face a situation

Find deleted files in the commit history of a Git project

Publish Date:2025/03/27 Views:67 Category:Git

This article discusses finding deleted files in the commit history of a project. This is handy when you want to recover a file you deleted in a project. Without further ado, let’s jump right in. Steps to find and restore deleted files in

Tracking command history in Git

Publish Date:2025/03/27 Views:141 Category:Git

Git is one of those version control systems that keeps a record of the changes made by its developers. Through these records, we can track various earlier commits, which teammates made what changes at what time, understand the bugs that wer

Using Git Rebase from the Command Line

Publish Date:2025/03/27 Views:130 Category:Git

This article will discuss using the git rebase command effectively . The git rebase command allows us to change a range of commits and modify the commit history in our repository. We can edit, reorder, or squash commits using the git rebase

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial