Skip to content

Echo "some_text" >> .gitignore includes the "" on Windows OS #104

@T0pp3rH4rl3y

Description

@T0pp3rH4rl3y

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions