5 Tell git to ignore files
Make a file named .gitignore
(you can also use nano/any-text-editor to do it)
Make a file that we would want git
to ignore
touch ignore_this.txt
Add this file to .gitignore
echo ignore_this.txt >> .gitignore
Try git add
a file we told .gitignore
to not track
git add ignore_this.txt
## The following paths are ignored by one of your .gitignore files:
## ignore_this.txt
## Use -f if you really want to add them.
If you want to add
a supposedly ignored file, use the -f
flag
git add -f ignore_this.txt
# Then commit it too!
git commit -m "Add ignore_this.txt"
## [master 43d9a3d] Add ignore_this.txt
## 1 file changed, 0 insertions(+), 0 deletions(-)
## create mode 100644 ignore_this.txt