diff --git a/01_remove_all_pyc.md b/01_remove_all_pyc.md index 2891215..f666e1a 100644 --- a/01_remove_all_pyc.md +++ b/01_remove_all_pyc.md @@ -6,4 +6,4 @@ To recursively remove all those pesky *.pyc* files from a git repo, run this com $ find . -name "*.pyc" -exec git rm -f {} \; ``` -Then make sure to add a *.gitignore* and the root of the repo and add the line: `*.pyc` \ No newline at end of file +Then make sure to add a *.gitignore* in the root of the repo and add the line: `*.pyc` \ No newline at end of file