"files.exclude": { // --- PROJECT DIRECTORIES --- "**/.git/": true, "node_modules/": true, "out/": true, "typings/": true, // --- PROJECT FILES --- "LICENSE": true, "README.md": true }, "explorer.fileNesting.patterns": { "*.ts": "${capture}.js",...
Patterns which are specific to a particular repository but which do not need to be shared with other related repositories (e.g., auxiliary files that live inside the repository but are specific to one user's workflow) should go into the $GIT_DIR/info/exclude file. The .git/info/exclude f...
__pycache__/, .jython_cache and .pytest_cache: can be used to ignore caches made by python, jython and pytest. *.pyc: will ignore the compiled byte code python files. Create a remote repository In the upper-right corner of any page on the GitHub web browser, use the drop-down menu...
entries specified; assuming /Users/ztlevi/Developer/python-test Auto-excluding **/node_modules Auto-excluding **/__pycache__ Auto-excluding .git Setting pythonPath for service "python-test": "/usr/local/bin/python3" stubPath /Users/ztlevi/Developer/python-test/typings is not a valid ...
I always use this command to remove those untracked files. One-line, Unix-style, clean output: git ls-files --ignored --exclude-standard | sed 's/.*/"&"/' | xargs git rm -r --cached It lists all your ignored files, replaces every output line with a quoted...