Ignoring Things
What if we have files that we do not want Git to track for us, like backup files created by our editor or intermediate files created during data analysis? Let’s create a few dummy files:
mkdir results
touch a.dat b.dat c.dat results/a.out results/b.out
and see what Git says:
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
[31mmodified: 02-creating-repositories_instructor.ipynb[m
[31mmodified: 03-tracking-changes_instructor.ipynb[m
[31mmodified: 04-exploring-history_instructor.ipynb[m
Untracked files:
(use "git add <file>..." to include in what will be committed)
[31ma.dat[m
[31mb.dat[m
[31mc.dat[m
[31mresults/[m
no changes added to commit (use "git add" and/or "git commit -a")
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, 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
These patterns tell Git to ignore any file whose name ends in .dat and everything in the results directory. (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
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
[31mmodified: 02-creating-repositories_instructor.ipynb[m
[31mmodified: 03-tracking-changes_instructor.ipynb[m
[31mmodified: 04-exploring-history_instructor.ipynb[m
Untracked files:
(use "git add <file>..." to include in what will be committed)
[31ma.dat[m
[31mb.dat[m
[31mc.dat[m
[31mresults/[m
no changes added to commit (use "git add" and/or "git commit -a")
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 "Ignore data files and the results folder."
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
[31mmodified: 02-creating-repositories_instructor.ipynb[m
[31mmodified: 03-tracking-changes_instructor.ipynb[m
[31mmodified: 04-exploring-history_instructor.ipynb[m
Untracked files:
[31ma.dat[m
[31mb.dat[m
[31mc.dat[m
[31mresults/[m
no changes added to commit
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
[31mmodified: 02-creating-repositories_instructor.ipynb[m
[31mmodified: 03-tracking-changes_instructor.ipynb[m
[31mmodified: 04-exploring-history_instructor.ipynb[m
Untracked files:
(use "git add <file>..." to include in what will be committed)
[31ma.dat[m
[31mb.dat[m
[31mc.dat[m
[31mresults/[m
no changes added to commit (use "git add" and/or "git commit -a")
As a bonus, using .gitignore helps us avoid accidentally adding to the repository files that we don’t want to track:
git add a.dat
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 a.dat. We can also always see the status of ignored files if we want:
git status --ignored
On branch master
Your branch is up to date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
[32mnew file: a.dat[m
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
[31mmodified: 02-creating-repositories_instructor.ipynb[m
[31mmodified: 03-tracking-changes_instructor.ipynb[m
[31mmodified: 04-exploring-history_instructor.ipynb[m
Untracked files:
(use "git add <file>..." to include in what will be committed)
[31mb.dat[m
[31mc.dat[m
[31mresults/[m
# Ignoring Nested Files
Given a directory structure that looks like:
results/data results/plots
How would you ignore only results/plots and not results/data?
Solution
As with most programming issues, there are a few ways that you could solve this. If you only want to ignore the contents of results/plots, you can change your .gitignore to ignore only the /plots/ subfolder by adding the following line to your .gitignore:
results/plots/
If, instead, you want to ignore everything in /results/, but wanted to track results/data, then you can add results/ to your .gitignore and create an exception for the results/data/ folder. The next challenge will cover this type of solution.
Sometimes the pattern comes in handy, too, which matches multiple directory levels. E.g. /results/plots/* would make git ignore the results/plots directory in any root directory.
# Including Specific Files
How would you ignore all .data files in your root directory except for final.data? Hint: Find out what ! (the exclamation point operator) does
Solution
You would add the following two lines to your .gitignore:
*.data # ignore all data files !final.data # except final.data
The exclamation point operator will include a previously excluded entry.
# Ignoring all data Files in a Directory
Given a directory structure that looks like:
results/data/position/gps/a.data results/data/position/gps/b.data results/data/position/gps/c.data results/data/position/gps/info.txt results/plots
What’s the shortest .gitignore rule you could write to ignore all .data files in result/data/position/gps? Do not ignore the info.txt.
Solution
Appending results/data/position/gps/*.data will match every file in results/data/position/gps that ends with .data. The file results/data/position/gps/info.txt will not be ignored.
# The Order of Rules
Given a .gitignore file with the following contents:
*.data !*.data
What will be the result?
Solution
The ! modifier will negate an entry from a previously defined ignore pattern. Because the !*.data entry negates all of the previous .data files in the .gitignore, none of them will be ignored, and all .data files will be tracked.
# Log Files
You wrote a script that creates many intermediate log-files of the form log_01, log_02, log_03, etc. You want to keep them but you do not want to track them through git.
- Write one .gitignore entry that excludes files of the form log_01, log_02, etc.
- Test your “ignore pattern” by creating some dummy files of the form log_01, etc.
-
You find that the file log_01 is very important after all, add it to the tracked files without changing the .gitignore again.
-
Discuss with your neighbor what other types of files could reside in your directory that you do not want to track and thus would exclude via .gitignore.
# Solution
- append either log_ or log as a new entry in your .gitignore
- track log_01 using git add -f log_01
Key Points
- The .gitignore file tells Git what files to ignore.
The material in this notebook is derived from the Software Carpentry lessons © Software Carpentry under the terms of the CC-BY 4.0 license.