iccsa-21-wind

Wind Simulation Using High-Frequency Velocity Component Measurements
git clone https://git.igankevich.com/iccsa-21-wind.git
Log | Files | Refs

.gitignore (1509B)


      1 /build
      2 Rplots.pdf
      3 /CoA_Medium.eps
      4 
      5 # Created by https://www.toptal.com/developers/gitignore/api/vim,linux,r
      6 # Edit at https://www.toptal.com/developers/gitignore?templates=vim,linux,r
      7 
      8 ### Linux ###
      9 *~
     10 
     11 # temporary files which can be created if a process still has a handle open of a deleted file
     12 .fuse_hidden*
     13 
     14 # KDE directory preferences
     15 .directory
     16 
     17 # Linux trash folder which might appear on any partition or disk
     18 .Trash-*
     19 
     20 # .nfs files are created when an open file is removed but is still being accessed
     21 .nfs*
     22 
     23 ### R ###
     24 # History files
     25 .Rhistory
     26 .Rapp.history
     27 
     28 # Session Data files
     29 .RData
     30 
     31 # User-specific files
     32 .Ruserdata
     33 
     34 # Example code in package build process
     35 *-Ex.R
     36 
     37 # Output files from R CMD build
     38 /*.tar.gz
     39 
     40 # Output files from R CMD check
     41 /*.Rcheck/
     42 
     43 # RStudio files
     44 .Rproj.user/
     45 
     46 # produced vignettes
     47 vignettes/*.html
     48 vignettes/*.pdf
     49 
     50 # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
     51 .httr-oauth
     52 
     53 # knitr and R markdown default cache directories
     54 *_cache/
     55 /cache/
     56 
     57 # Temporary files created by R markdown
     58 *.utf8.md
     59 *.knit.md
     60 
     61 # R Environment Variables
     62 .Renviron
     63 
     64 ### R.Bookdown Stack ###
     65 # R package: bookdown caching files
     66 /*_files/
     67 
     68 ### Vim ###
     69 # Swap
     70 [._]*.s[a-v][a-z]
     71 !*.svg  # comment out if you don't need vector files
     72 [._]*.sw[a-p]
     73 [._]s[a-rt-v][a-z]
     74 [._]ss[a-gi-z]
     75 [._]sw[a-p]
     76 
     77 # Session
     78 Session.vim
     79 Sessionx.vim
     80 
     81 # Temporary
     82 .netrwhist
     83 # Auto-generated tag files
     84 tags
     85 # Persistent undo
     86 [._]*.un~
     87 
     88 # End of https://www.toptal.com/developers/gitignore/api/vim,linux,r