github.com/kaydxh/golang@v0.0.131/.gitignore (about)

     1  #
     2  # NOTE! Please use 'git ls-files -i --exclude-standard'
     3  # command after changing this file, to see if there are
     4  # any tracked files which get ignored after the change.
     5  #
     6  # Temp files (e.g. editors).
     7  *~
     8  *.sw[op]
     9  
    10  # Compiled objects.
    11  #*.a
    12  *.o
    13  *.l[ao]
    14  #*.so
    15  *.exe
    16  
    17  *.d
    18  !**/tmpfiles.d
    19  !crosh/dev.d
    20  *.depends
    21  .deps
    22  .libs
    23  
    24  *.gch
    25  *.gcda
    26  *.gcno
    27  
    28  # Common output files.
    29  *.dump
    30  *.out
    31  *.test
    32  
    33  # Protobuf files.
    34  # *.pb.cc
    35  # *.pb.h
    36  
    37  # Python files.
    38  *.pyc
    39  
    40  # Debug (e.g. gdb).
    41  .gdb_history
    42  .gdbinit
    43  
    44  # xxx.core file
    45  *.core
    46  cscope.*
    47  tags
    48  tags_sorted_by_file
    49  
    50  # Patch files.
    51  *.diff
    52  *.patch
    53  *.orig
    54  *.rej
    55  
    56  # Nested git repos.
    57  /glbench/images/
    58  
    59  # Cargo lock file.
    60  Cargo.lock
    61  
    62  # Cargo build directories.
    63  target/
    64  
    65  # VSCode source dirs
    66  .vscode/
    67  
    68  # Intellij project dirs
    69  .idea
    70  
    71  # clangd cache dir
    72  .clangd
    73  .cache
    74  
    75  # Other
    76  .DS_Store