Explorar el Código

Adding to .gitignore file

'*.swo' is another common VIM swapfile name. '*~' is used for backups
when editing files, and 'pip-wheel-metadata/' may be automatically
generated when running the application, so they belong in this file.
Andrew Engelbrecht hace 4 años
padre
commit
437bdfa6bf
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      .gitignore

+ 3 - 0
.gitignore

@@ -11,12 +11,15 @@ pagure_env/
 # Other python/editor specific files to ignore
 dist/
 build/
+pip-wheel-metadata/
 *.pyc
 *.pyo
+*.swo
 *.swp
 *.egg-info
 *.conf
 .coverage
+*~
 
 # Ignore files generated by run_ci_tests
 pep8.out