我在eclipse中有这个Python项目,在每次运行中他都会创建这些.pyc文件。如何让git
忽略这些文件。我知道如何使用.gitignore
忽略某个文件但是是否可以忽略具有特定扩展名的所有文件?
答案 0 :(得分:1)
假设您要忽略包含扩展程序.pyc
,.info
和.ini
在.gitignore
文件中添加以下行
*.pyc
*.info
*.ini
答案 1 :(得分:0)
试试这个这是我的.gitignore
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# Logs and databases #
######################
*.log
*.sql
*.sqlite
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db