Skip to content
Snippets Groups Projects
.gitignore 531 B
Newer Older
  • Learn to ignore specific revisions
  • mux's avatar
    mux committed
    # Compiled Sources
    ###################
    *.o
    *.a
    *.elf
    *.bin
    *.map
    *.hex
    *.dis
    
    stijn's avatar
    stijn committed
    *.exe
    
    mux's avatar
    mux committed
    
    
    mux's avatar
    mux committed
    ############
    
    # Logs and Databases
    ######################
    *.log
    
    # VIM Swap Files
    ######################
    *.swp
    
    
    # Build directory
    ######################
    build/
    
    Andrew Scheller's avatar
    Andrew Scheller committed
    
    # Test failure outputs
    ######################
    tests/*.exp
    tests/*.out
    
    
    # Python cache files
    ######################
    __pycache__/
    
    # Customized Makefile/project overrides
    ######################
    
    GNUmakefile
    
    
    # Generated rst files
    ######################
    genrst/