Skip to content
Snippets Groups Projects
.gitignore 1.05 KiB
Newer Older
  • Learn to ignore specific revisions
  • # Documentation artifacts
    
    doc/doxygen/html
    doc/doxygen/latex
    doc/doxygen/man
    
    Martine Lenders's avatar
    Martine Lenders committed
    doc/doxygen/*.log
    
    doc/doxygen/*.db
    doc/doxygen/*.tmp
    
    # Build directory
    /build
    
    Martine Lenders's avatar
    Martine Lenders committed
    *.orig
    .*.swp
    
    René Kijewski's avatar
    René Kijewski committed
    cachegrind.out*
    
    # Eclipse workspace files
    
    .project
    .cproject
    .settings
    
    Matthias Lohr's avatar
    Matthias Lohr committed
    .idea
    
    # KDevelop4 project files
    
    # Codelite (among others) project files
    *.project
    
    # Visual Studio Code user settings
    .vscode/
    
    # ctags index files
    tags
    # GDB initialization scripts
    .gdbinit
    
    # Eclipse symbol file (output from make eclipsesym)
    eclipsesym.xml
    
    /toolchain
    
    # Ignore created Arduino sketch files
    _sketches.cpp
    
    
    # local override files
    Makefile.local
    
    # Vagrant
    .vagrant
    
    
    # clang-complete command line argument lists (Vim: clang-complete, Atom: linter-clang, autocomplete-clang addons)
    .clang_complete
    
    # YouCompleteMe (https://github.com/Valloric/YouCompleteMe)
    .ycm_extra_conf.py
    
    
    # Python compiled files
    *.pyc
    
    # Ignore download cache
    
    .dlcache
    
    
    # scan-build artifacts
    scan-build/
    
    
    # compile_and_test_for_boards default "results" directory
    results/