# gitignore cheatsheet: # # Matches with no '/'s automatically match files in sub-dirs. # Matches starting with a '/' only match in the top-level directory. # Matches ending with a '/' only match directories. # ** can be used to match multiple levels of directory. # Global glob patterns. *.log *.coverprofile *.test .project /.noseids /nosetests.xml # Build directories. /bin/ /docker-image/bin/ /build/ /dist/ .go-pkg-cache/ /artifacts/ bpf-gpl/libbpf bpf-gpl/libbpf/src/amd64/ bpf-gpl/libbpf/src/arm64/ bpf-gpl/libbpf/src/ppc64le/ bpf-gpl/libbpf/src/s390x/ bpf-gpl/.libbpf* bpf-gpl/*.ll.tmp bpf-gpl/ut/*.ll.tmp # IDE files. /.idea/ /.vscode/ # Patterns to match files from older releases (prevents lots of # untracked files from showing up when switching from a maintenance branch. # Python builds/UT data. .hypothesis/ .coverage *_pb2.py /env/ *.egg-info/ tmp/ htmlcov/ .tox/ /.eggs/ /coverage.xml /site-packages /python/ /version.txt /.dir-locals.el /report/*.xml /k8sfv/prometheus/data /k8sfv/prometheus/prometheus.yml /k8sfv/output/ /fv/extra-env.sh .semaphore-cache/ /fv/cwlogs /rpm/felix.spec /debian/changelog /.built-bpf-clang-builder-* # for the bpf programs *.ll *.d # produced as part of openstack packaging build debian/files # Env Configuration .env