.gitignore raw

   1  # Patterns that are specific to a text editor, IDE, operating system, or user
   2  # environment are not added here. They should be added to your local gitignore
   3  # file instead:
   4  # https://docs.github.com/en/get-started/git-basics/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer
   5  
   6  # Build subdirectories.
   7  /*build*
   8  !/build-aux
   9  !/build_msvc
  10  
  11  *.pyc
  12  
  13  # Only ignore unexpected patches
  14  *.patch
  15  !ci/test/*.patch
  16  !contrib/guix/patches/*.patch
  17  !depends/patches/**/*.patch
  18  
  19  /CMakeUserPresets.json
  20  
  21  # Previous releases
  22  /releases
  23  
  24  # cargo default target dir
  25  target/
  26  
  27  /guix-build-*
  28  
  29  /ci/scratch/
  30