Skip to content
Snippets Groups Projects
Select Git revision
  • 00ab8c783f8d57270d706f23647f18db9b78b0ad
  • master default protected
2 results

.gitignore

Blame
  • Forked from Toby Murray / swen90006-a2-2020
    Source project has a limited visibility.
    .gitignore 413 B
    # ignore everything not whitelisted
    *
    
    # whitelist dot files
    !.gitignore
    !.gitlab-ci.yml
    
    # whitelist helper scripts
    !build.sh
    !eng_unimelb_setup
    !get_coverage.sh
    !Makefile
    !README.md
    !run_fuzzer.sh
    !run_tests.sh
    
    #whitelist folders
    !fuzzer/
    !poc/
    !src/
    
    # ignore all compiled Java files in the whitelisted folders
    **/*.class
    
    # ignore all compiled C files in the whitelisted folders
    **/*.o
    **/*.a
    /src/vuln-2.1/