.gitignore 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  1. # ---> NetCDF
  2. *.nc
  3. # ---> C
  4. # Object files
  5. *.o
  6. *.ko
  7. *.obj
  8. *.elf
  9. # Precompiled Headers
  10. *.gch
  11. *.pch
  12. # Libraries
  13. *.lib
  14. *.a
  15. *.la
  16. *.lo
  17. # Shared objects (inc. Windows DLLs)
  18. *.dll
  19. *.so
  20. *.so.*
  21. *.dylib
  22. # Executables
  23. *.exe
  24. *.out
  25. *.app
  26. *.i*86
  27. *.x86_64
  28. *.hex
  29. # Debug files
  30. *.dSYM/
  31. # ---> C++
  32. # Compiled Object files
  33. *.slo
  34. *.lo
  35. *.o
  36. *.obj
  37. # Precompiled Headers
  38. *.gch
  39. *.pch
  40. # Compiled Dynamic libraries
  41. *.so
  42. *.dylib
  43. *.dll
  44. # Fortran module files
  45. *.mod
  46. # Compiled Static libraries
  47. *.lai
  48. *.la
  49. *.a
  50. *.lib
  51. # Executables
  52. *.exe
  53. *.out
  54. *.app
  55. # ---> CMake
  56. CMakeCache.txt
  57. CMakeFiles
  58. CMakeScripts
  59. Makefile
  60. cmake_install.cmake
  61. install_manifest.txt
  62. # ---> CVS
  63. /CVS/*
  64. */CVS/*
  65. .cvsignore
  66. */.cvsignore
  67. # ---> Eclipse
  68. *.pydevproject
  69. .metadata
  70. .gradle
  71. bin/
  72. tmp/
  73. *.tmp
  74. *.bak
  75. *.swp
  76. *~.nib
  77. local.properties
  78. .settings/
  79. .loadpath
  80. # Eclipse Core
  81. .project
  82. # External tool builders
  83. .externalToolBuilders/
  84. # Locally stored "Eclipse launch configurations"
  85. *.launch
  86. # CDT-specific
  87. .cproject
  88. # JDT-specific (Eclipse Java Development Tools)
  89. .classpath
  90. # Java annotation processor (APT)
  91. .factorypath
  92. # PDT-specific
  93. .buildpath
  94. # sbteclipse plugin
  95. .target
  96. # TeXlipse plugin
  97. .texlipse
  98. # ---> Emacs
  99. # -*- mode: gitignore; -*-
  100. *~
  101. \#*\#
  102. /.emacs.desktop
  103. /.emacs.desktop.lock
  104. *.elc
  105. auto-save-list
  106. tramp
  107. .\#*
  108. # Org-mode
  109. .org-id-locations
  110. *_archive
  111. # flymake-mode
  112. *_flymake.*
  113. # eshell files
  114. /eshell/history
  115. /eshell/lastdir
  116. # elpa packages
  117. /elpa/
  118. # reftex files
  119. *.rel
  120. # AUCTeX auto folder
  121. /auto/
  122. # cask packages
  123. .cask/
  124. # ---> Kate
  125. # Swap Files #
  126. .*.kate-swp
  127. .swp.*
  128. # ---> LibreOffice
  129. # LibreOffice locks
  130. .~lock.*#
  131. # ---> LyX
  132. # Ignore LyX backup and autosave files
  133. # http://www.lyx.org/
  134. *.lyx~
  135. *.lyx#
  136. # ---> Matlab
  137. ##---------------------------------------------------
  138. ## Remove autosaves generated by the Matlab editor
  139. ## We have git for backups!
  140. ##---------------------------------------------------
  141. # Windows default autosave extension
  142. *.asv
  143. # OSX / *nix default autosave extension
  144. *.m~
  145. # Compiled MEX binaries (all platforms)
  146. *.mex*
  147. # Simulink Code Generation
  148. slprj/
  149. # ---> Mercurial
  150. .hg/
  151. .hgignore
  152. .hgsigs
  153. .hgsub
  154. .hgsubstate
  155. .hgtags
  156. # ---> Python
  157. # Byte-compiled / optimized / DLL files
  158. __pycache__/
  159. *.py[cod]
  160. *$py.class
  161. # C extensions
  162. *.so
  163. # Distribution / packaging
  164. .Python
  165. env/
  166. build/
  167. develop-eggs/
  168. dist/
  169. downloads/
  170. eggs/
  171. .eggs/
  172. lib/
  173. lib64/
  174. parts/
  175. sdist/
  176. var/
  177. *.egg-info/
  178. .installed.cfg
  179. *.egg
  180. # PyInstaller
  181. # Usually these files are written by a python script from a template
  182. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  183. *.manifest
  184. *.spec
  185. # Installer logs
  186. pip-log.txt
  187. pip-delete-this-directory.txt
  188. # Unit test / coverage reports
  189. htmlcov/
  190. .tox/
  191. .coverage
  192. .coverage.*
  193. .cache
  194. nosetests.xml
  195. coverage.xml
  196. *,cover
  197. # Translations
  198. *.mo
  199. *.pot
  200. # Django stuff:
  201. *.log
  202. # Sphinx documentation
  203. docs/_build/
  204. # PyBuilder
  205. target/
  206. # ---> R
  207. # History files
  208. .Rhistory
  209. .Rapp.history
  210. # Example code in package build process
  211. *-Ex.R
  212. # RStudio files
  213. .Rproj.user/
  214. # produced vignettes
  215. vignettes/*.html
  216. vignettes/*.pdf
  217. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  218. .httr-oauth
  219. # ---> SVN
  220. .svn/
  221. # ---> SublimeText
  222. # cache files for sublime text
  223. *.tmlanguage.cache
  224. *.tmPreferences.cache
  225. *.stTheme.cache
  226. # workspace files are user-specific
  227. *.sublime-workspace
  228. # project files should be checked into the repository, unless a significant
  229. # proportion of contributors will probably not be using SublimeText
  230. # *.sublime-project
  231. # sftp configuration file
  232. sftp-config.json
  233. # ---> TeX
  234. ## Core latex/pdflatex auxiliary files:
  235. *.aux
  236. *.lof
  237. *.log
  238. *.lot
  239. *.fls
  240. *.out
  241. *.toc
  242. ## Intermediate documents:
  243. *.dvi
  244. *-converted-to.*
  245. # these rules might exclude image files for figures etc.
  246. # *.ps
  247. # *.eps
  248. # *.pdf
  249. *.png
  250. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  251. *.bbl
  252. *.bcf
  253. *.blg
  254. *-blx.aux
  255. *-blx.bib
  256. *.brf
  257. *.run.xml
  258. ## Build tool auxiliary files:
  259. *.fdb_latexmk
  260. *.synctex
  261. *.synctex.gz
  262. *.synctex.gz(busy)
  263. *.pdfsync
  264. ## Auxiliary and intermediate files from other packages:
  265. # algorithms
  266. *.alg
  267. *.loa
  268. # achemso
  269. acs-*.bib
  270. # amsthm
  271. *.thm
  272. # beamer
  273. *.nav
  274. *.snm
  275. *.vrb
  276. #(e)ledmac/(e)ledpar
  277. *.end
  278. *.[1-9]
  279. *.[1-9][0-9]
  280. *.[1-9][0-9][0-9]
  281. *.[1-9]R
  282. *.[1-9][0-9]R
  283. *.[1-9][0-9][0-9]R
  284. *.eledsec[1-9]
  285. *.eledsec[1-9]R
  286. *.eledsec[1-9][0-9]
  287. *.eledsec[1-9][0-9]R
  288. *.eledsec[1-9][0-9][0-9]
  289. *.eledsec[1-9][0-9][0-9]R
  290. # glossaries
  291. *.acn
  292. *.acr
  293. *.glg
  294. *.glo
  295. *.gls
  296. # gnuplottex
  297. *-gnuplottex-*
  298. # hyperref
  299. *.brf
  300. # knitr
  301. *-concordance.tex
  302. *.tikz
  303. *-tikzDictionary
  304. # listings
  305. *.lol
  306. # makeidx
  307. *.idx
  308. *.ilg
  309. *.ind
  310. *.ist
  311. # minitoc
  312. *.maf
  313. *.mtc
  314. *.mtc[0-9]
  315. *.mtc[1-9][0-9]
  316. # minted
  317. _minted*
  318. *.pyg
  319. # morewrites
  320. *.mw
  321. # mylatexformat
  322. *.fmt
  323. # nomencl
  324. *.nlo
  325. # sagetex
  326. *.sagetex.sage
  327. *.sagetex.py
  328. *.sagetex.scmd
  329. # sympy
  330. *.sout
  331. *.sympy
  332. sympy-plots-for-*.tex/
  333. # TikZ & PGF
  334. *.dpth
  335. *.md5
  336. *.auxlock
  337. # todonotes
  338. *.tdo
  339. # xindy
  340. *.xdy
  341. # WinEdt
  342. *.bak
  343. *.sav
  344. # ---> TortoiseGit
  345. # Project-level settings
  346. /.tgitconfig
  347. # ---> Vim
  348. [._]*.s[a-w][a-z]
  349. [._]s[a-w][a-z]
  350. *.un~
  351. Session.vim
  352. .netrwhist
  353. *~
  354. # ---> Windows
  355. # Windows image file caches
  356. Thumbs.db
  357. ehthumbs.db
  358. # Folder config file
  359. Desktop.ini
  360. # Recycle Bin used on file shares
  361. $RECYCLE.BIN/
  362. # Windows Installer files
  363. *.cab
  364. *.msi
  365. *.msm
  366. *.msp
  367. # Windows shortcuts
  368. *.lnk
  369. # ---> WordPress
  370. *.log
  371. .htaccess
  372. sitemap.xml
  373. sitemap.xml.gz
  374. wp-config.php
  375. wp-content/advanced-cache.php
  376. wp-content/backup-db/
  377. wp-content/backups/
  378. wp-content/blogs.dir/
  379. wp-content/cache/
  380. wp-content/upgrade/
  381. wp-content/uploads/
  382. wp-content/wp-cache-config.php
  383. wp-content/plugins/hello.php
  384. /readme.html
  385. /license.txt