You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JENKINS_HOME.gitignore 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Learn more about Jenkins and JENKINS_HOME directory for which this file is
  2. # intended.
  3. #
  4. # http://jenkins-ci.org/
  5. # https://wiki.jenkins-ci.org/display/JENKINS/Administering+Jenkins
  6. #
  7. # Note: secret.key is purposefully not tracked by git. This should be backed up
  8. # separately because configs may contain secrets which were encrypted using the
  9. # secret.key. To back up secrets use 'tar -czf /tmp/secrets.tgz secret*' and
  10. # save the file separate from your repository. If you want secrets backed up
  11. # with configuration, then see the bottom of this file for an example.
  12. # Ignore all JENKINS_HOME except jobs directory, root xml config, and
  13. # .gitignore file.
  14. /*
  15. !/jobs
  16. !/.gitignore
  17. !/*.xml
  18. # Ignore all files in jobs subdirectories except for folders.
  19. # Note: git doesn't track folders, only file content.
  20. jobs/**
  21. !jobs/**/
  22. # Uncomment the following line to save next build numbers with config.
  23. #!jobs/**/nextBuildNumber
  24. # For performance reasons, we want to ignore builds in Jenkins jobs because it
  25. # contains many tiny files on large installations. This can impact git
  26. # performance when running even basic commands like 'git status'.
  27. builds
  28. indexing
  29. # Exclude only config.xml files in repository subdirectories.
  30. !config.xml
  31. # Don't track workspaces (when users build on the master).
  32. jobs/**/*workspace
  33. # Security warning: If secrets are included with your configuration, then an
  34. # adversary will be able to decrypt all encrypted secrets within Jenkins
  35. # config. Including secrets is a bad practice, but the example is included in
  36. # case someone still wants it for convenience. Uncomment the following line to
  37. # include secrets for decryption with repository configuration in Git.
  38. #!/secret*
  39. # As a result, only Jenkins settings and job config.xml files in JENKINS_HOME
  40. # will be tracked by git.