IshanMi / reverse-image-search-patent

Reverse Image Search for Patents
0 stars 0 forks source link

Use .gitignore file #2

Closed bbelderbos closed 3 years ago

bbelderbos commented 3 years ago

The __pycache__ directory made it to version control, to undo that:

# ** means recursive:
echo "**__pycache__" > .gitignore
git rm -r __pycache__
git add .
git commit -m "add gitignore and cleaned up pycache dir"