您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Puppet.gitignore 238B

12345678910111213141516
  1. # gitignore template for Puppet modules
  2. # website: https://forge.puppet.com/
  3. # Built packages
  4. pkg/*
  5. # Should run on multiple platforms so don't check in
  6. Gemfile.lock
  7. # Tests
  8. spec/fixtures/*
  9. coverage/*
  10. # Third-party
  11. vendor/*
  12. .bundle/*