July 2018
Intermediate to advanced
354 pages
10h 57m
English
$ echo "Testing" > test.txt $ echo "Testing" > test.txt.bak $ mkdir bin $ touch bin/foobar $ touch bin/frotz
$ git status
On branch ignore
Your branch is up-to-date with 'origin/ignore'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
test.txt
nothing added to commit but untracked files present (use "git add" to track)
$ cat .gitignore
*.config
*.bak
# Java files
*.class
bin/
This means that *.bak, *.class, *.config, and everything in ...
Read now
Unlock full access