Program to mount remote filesystems
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

.gitignore 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. # ---> Linux
  2. *~
  3. # temporary files which can be created if a process still has a handle open of a deleted file
  4. .fuse_hidden*
  5. # KDE directory preferences
  6. .directory
  7. # Linux trash folder which might appear on any partition or disk
  8. .Trash-*
  9. # .nfs files are created when an open file is removed but is still being accessed
  10. .nfs*
  11. # ---> Python
  12. # Byte-compiled / optimized / DLL files
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. # C extensions
  17. *.so
  18. # Distribution / packaging
  19. .Python
  20. build/
  21. develop-eggs/
  22. dist/
  23. downloads/
  24. eggs/
  25. .eggs/
  26. lib/
  27. lib64/
  28. parts/
  29. sdist/
  30. var/
  31. wheels/
  32. *.egg-info/
  33. .installed.cfg
  34. *.egg
  35. MANIFEST
  36. # PyInstaller
  37. # Usually these files are written by a python script from a template
  38. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  39. *.manifest
  40. *.spec
  41. # Installer logs
  42. pip-log.txt
  43. pip-delete-this-directory.txt
  44. # Unit test / coverage reports
  45. htmlcov/
  46. .tox/
  47. .nox/
  48. .coverage
  49. .coverage.*
  50. .cache
  51. nosetests.xml
  52. coverage.xml
  53. *.cover
  54. .hypothesis/
  55. .pytest_cache/
  56. # Translations
  57. *.mo
  58. *.pot
  59. # Django stuff:
  60. *.log
  61. local_settings.py
  62. db.sqlite3
  63. # Flask stuff:
  64. instance/
  65. .webassets-cache
  66. # Scrapy stuff:
  67. .scrapy
  68. # Sphinx documentation
  69. docs/_build/
  70. # PyBuilder
  71. target/
  72. # Jupyter Notebook
  73. .ipynb_checkpoints
  74. # IPython
  75. profile_default/
  76. ipython_config.py
  77. # pyenv
  78. .python-version
  79. # celery beat schedule file
  80. celerybeat-schedule
  81. # SageMath parsed files
  82. *.sage.py
  83. # Environments
  84. .env
  85. .venv
  86. env/
  87. venv/
  88. ENV/
  89. env.bak/
  90. venv.bak/
  91. # Spyder project settings
  92. .spyderproject
  93. .spyproject
  94. # Rope project settings
  95. .ropeproject
  96. # mkdocs documentation
  97. /site
  98. # mypy
  99. .mypy_cache/
  100. .dmypy.json
  101. dmypy.json
  102. # Pyre type checker
  103. .pyre/