Git
[Git] gitignore 적용 안될때
.gitignore git의 캐시가 문제 캐시삭제후 push git rm -r --cached . git add . git commit -m "fixed untracked files" git push
[Git] 파이썬 git ignore
# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the e..