Overview
Teaching: 10 min
Exercises: 10 minQuestions
How can I tell Git to ignore files I don’t want to track?
Objectives
Configure Git to ignore specific files.
Explain why ignoring files can be useful.
What if we have files that we do not want Git to track for us? These could be backup files created by our editor, or intermediate files created during data analysis.
Our guac recipe has a “secret ingredient” that we don’t want anyone to know about. Our first thought is to hide it among lots of similar files, so we do this:
$ cd guac
$ touch secret_sauce_1.txt secret_sauce_2.txt secret_sauce_3.txt secret_sauce_4.txt
and see what Git says:
$ git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
secret_sauce_1.txt
secret_sauce_2.txt
secret_sauce_3.txt
secret_sauce_4.txt
nothing added to commit but untracked files present (use "git add" to track)
Putting these files under version control would be a waste of disk space. What’s worse, having them all listed could distract us from changes that actually matter. And, in fact, we don’t want to call attention to these files at all. So let’s tell Git to ignore them.
We do this by creating a file in the root directory of our project called .gitignore
:
$ nano .gitignore
$ cat .gitignore
secret_sauce*
These patterns tell Git to ignore any file whose name begins with
secret_sauce
.
(If any of these files were already being tracked,
Git would continue to track them.)
Once we have created this file,
the output of git status
is much cleaner:
$ git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
.gitignore
nothing added to commit but untracked files present (use "git add" to track)
The only thing Git notices now is the newly-created .gitignore
file.
You might think we wouldn’t want to track it,
but everyone we’re sharing our repository with will probably want to ignore
the same things that we’re ignoring.
Let’s add and commit .gitignore
:
$ git add .gitignore
$ git commit -m "Add the ignore file"
$ git status
# On branch master
nothing to commit, working directory clean
As a bonus, using .gitignore
helps us avoid accidentally adding to the repository files that we don’t want to track:
$ git add secret_sauce_4.txt
The following paths are ignored by one of your .gitignore files:
secret_sauce_4.txt
Use -f if you really want to add them.
If we really want to override our ignore settings,
we can use git add -f
to force Git to add something. For example,
git add -f secret_sauce_4.txt
.
We can also always see the status of ignored files if we want:
$ git status --ignored
On branch master
Ignored files:
(use "git add -f <file>..." to include in what will be committed)
secret_sauce_1.txt
secret_sauce_2.txt
secret_sauce_3.txt
secret_sauce_4.txt
nothing to commit, working directory clean
Ignoring Nested Files
Including Specific Files
Ignoring all data Files in a Directory
The Order of Rules
Log Files
Key Points
The
.gitignore
file tells Git what files to ignore.