본문 바로가기

Python

[PYTHON] .gitignore pycache not working

반응형

.gitignore에

아무리 

 

__pycache__

__pycache__/

__pycache__/*

*.pyc

 

이렇게 넣어줘도 일을 안했다..

 

# Byte-compiled / optimized / DLL files

__pycache__/

*.py[cod]

 

이렇게 써주면

 

pycache인 .pyc 파일들을 제외 시킬 수 있다.

 

github.com/martinohanlon/flightlight/issues/1

 

.gitignore and pycache · Issue #1 · martinohanlon/flightlight

Hello, you might remove __pycache__ directory and add a .gitignore file like this: # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] # C extensions *.so # Distribution / packaging .Pyt...

github.com

 

반응형