hjwp / hjwp/Book-TDD-Web-Dev-Python
Echo "some_text" >> .gitignore includes the "" on Windows OS
Open
- Dominant language
- Python
- Stars
- 514
- Forks
- 175
- PR merge metrics
- No merged PRs in 30d
Description
When creating the .gitignore file on Windows OS the "" are included in the .gitignore which causes git to not ignore the files.
The following lines in Chapter 1 need to be changed to accomodate Windows users:
From:
$ echo "db.sqlite3" >> .gitignore
$ echo "geckodriver.log" >> .gitignore
$ echo "virtualenv" >> .gitignore
To:
$ echo db.sqlite3 >> .gitignore
$ echo geckodriver.log >> .gitignore
$ echo virtualenv >> .gitignore
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.