git - GitHub ignorefiles -
i using github more year, right cannot handle ignoring files.
i’m trying ignore files generated ide, , ignore .pyc files. keep appearing in changes. tried put:
experience/.idea experience/.idea/*
take @ screenshot:
there 2 parts this:
be sure you're using right directory matching scheme, since want block directory. that, want change
experience/.idea/**
experience/.idea/
.be sure git isn't tracking of files anymore removing them stage via
git rm --cached <paths-to-ignore>
.
Comments
Post a Comment