gitignore auto generator

.gitignore

https://gitignore.io/

https://www.toptal.com/developers/gitignore

macos, visualstudiocode, node, git

https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,node,git


  1. # Created by https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,node,git
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=macos,visualstudiocode,node,git
  3. ### Git ###
  4. # Created by git for backups. To disable backups in Git:
  5. # $ git config --global mergetool.keepBackup false
  6. *.orig
  7. # Created by git when using merge tools for conflicts
  8. *.BACKUP.*
  9. *.BASE.*
  10. *.LOCAL.*
  11. *.REMOTE.*
  12. *_BACKUP_*.txt
  13. *_BASE_*.txt
  14. *_LOCAL_*.txt
  15. *_REMOTE_*.txt
  16. ### macOS ###
  17. # General
  18. .DS_Store
  19. .AppleDouble
  20. .LSOverride
  21. # Icon must end with two \r
  22. Icon
  23. # Thumbnails
  24. ._*
  25. # Files that might appear in the root of a volume
  26. .DocumentRevisions-V100
  27. .fseventsd
  28. .Spotlight-V100
  29. .TemporaryItems
  30. .Trashes
  31. .VolumeIcon.icns
  32. .com.apple.timemachine.donotpresent
  33. # Directories potentially created on remote AFP share
  34. .AppleDB
  35. .AppleDesktop
  36. Network Trash Folder
  37. Temporary Items
  38. .apdisk
  39. ### Node ###
  40. # Logs
  41. logs
  42. *.log
  43. npm-debug.log*
  44. yarn-debug.log*
  45. yarn-error.log*
  46. lerna-debug.log*
  47. # Diagnostic reports (https://nodejs.org/api/report.html)
  48. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  49. # Runtime data
  50. pids
  51. *.pid
  52. *.seed
  53. *.pid.lock
  54. # Directory for instrumented libs generated by jscoverage/JSCover
  55. lib-cov
  56. # Coverage directory used by tools like istanbul
  57. coverage
  58. *.lcov
  59. # nyc test coverage
  60. .nyc_output
  61. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  62. .grunt
  63. # Bower dependency directory (https://bower.io/)
  64. bower_components
  65. # node-waf configuration
  66. .lock-wscript
  67. # Compiled binary addons (https://nodejs.org/api/addons.html)
  68. build/Release
  69. # Dependency directories
  70. node_modules/
  71. jspm_packages/
  72. # TypeScript v1 declaration files
  73. typings/
  74. # TypeScript cache
  75. *.tsbuildinfo
  76. # Optional npm cache directory
  77. .npm
  78. # Optional eslint cache
  79. .eslintcache
  80. # Microbundle cache
  81. .rpt2_cache/
  82. .rts2_cache_cjs/
  83. .rts2_cache_es/
  84. .rts2_cache_umd/
  85. # Optional REPL history
  86. .node_repl_history
  87. # Output of 'npm pack'
  88. *.tgz
  89. # Yarn Integrity file
  90. .yarn-integrity
  91. # dotenv environment variables file
  92. .env
  93. .env.test
  94. # parcel-bundler cache (https://parceljs.org/)
  95. .cache
  96. # Next.js build output
  97. .next
  98. # Nuxt.js build / generate output
  99. .nuxt
  100. dist
  101. # Gatsby files
  102. .cache/
  103. # Comment in the public line in if your project uses Gatsby and not Next.js
  104. # https://nextjs.org/blog/next-9-1#public-directory-support
  105. # public
  106. # vuepress build output
  107. .vuepress/dist
  108. # Serverless directories
  109. .serverless/
  110. # FuseBox cache
  111. .fusebox/
  112. # DynamoDB Local files
  113. .dynamodb/
  114. # TernJS port file
  115. .tern-port
  116. # Stores VSCode versions used for testing VSCode extensions
  117. .vscode-test
  118. ### VisualStudioCode ###
  119. .vscode/*
  120. !.vscode/settings.json
  121. !.vscode/tasks.json
  122. !.vscode/launch.json
  123. !.vscode/extensions.json
  124. *.code-workspace
  125. ### VisualStudioCode Patch ###
  126. # Ignore all local history of files
  127. .history
  128. # End of https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,node,git

demos

github


  1. # Created by https://www.toptal.com/developers/gitignore/api/github
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=github
  3. #!! ERROR: github is undefined. Use list command to see defined gitignore types !!#
  4. # End of https://www.toptal.com/developers/gitignore/api/github

vscode


  1. # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode
  3. ### VisualStudioCode ###
  4. .vscode/*
  5. !.vscode/settings.json
  6. !.vscode/tasks.json
  7. !.vscode/launch.json
  8. !.vscode/extensions.json
  9. *.code-workspace
  10. ### VisualStudioCode Patch ###
  11. # Ignore all local history of files
  12. .history
  13. # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode

https://www.toptal.com/developers/gitignore/api/visualstudiocode

node.js


  1. # Created by https://www.toptal.com/developers/gitignore/api/node
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=node
  3. ### Node ###
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. lerna-debug.log*
  11. # Diagnostic reports (https://nodejs.org/api/report.html)
  12. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  13. # Runtime data
  14. pids
  15. *.pid
  16. *.seed
  17. *.pid.lock
  18. # Directory for instrumented libs generated by jscoverage/JSCover
  19. lib-cov
  20. # Coverage directory used by tools like istanbul
  21. coverage
  22. *.lcov
  23. # nyc test coverage
  24. .nyc_output
  25. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  26. .grunt
  27. # Bower dependency directory (https://bower.io/)
  28. bower_components
  29. # node-waf configuration
  30. .lock-wscript
  31. # Compiled binary addons (https://nodejs.org/api/addons.html)
  32. build/Release
  33. # Dependency directories
  34. node_modules/
  35. jspm_packages/
  36. # TypeScript v1 declaration files
  37. typings/
  38. # TypeScript cache
  39. *.tsbuildinfo
  40. # Optional npm cache directory
  41. .npm
  42. # Optional eslint cache
  43. .eslintcache
  44. # Microbundle cache
  45. .rpt2_cache/
  46. .rts2_cache_cjs/
  47. .rts2_cache_es/
  48. .rts2_cache_umd/
  49. # Optional REPL history
  50. .node_repl_history
  51. # Output of 'npm pack'
  52. *.tgz
  53. # Yarn Integrity file
  54. .yarn-integrity
  55. # dotenv environment variables file
  56. .env
  57. .env.test
  58. # parcel-bundler cache (https://parceljs.org/)
  59. .cache
  60. # Next.js build output
  61. .next
  62. # Nuxt.js build / generate output
  63. .nuxt
  64. dist
  65. # Gatsby files
  66. .cache/
  67. # Comment in the public line in if your project uses Gatsby and not Next.js
  68. # https://nextjs.org/blog/next-9-1#public-directory-support
  69. # public
  70. # vuepress build output
  71. .vuepress/dist
  72. # Serverless directories
  73. .serverless/
  74. # FuseBox cache
  75. .fusebox/
  76. # DynamoDB Local files
  77. .dynamodb/
  78. # TernJS port file
  79. .tern-port
  80. # Stores VSCode versions used for testing VSCode extensions
  81. .vscode-test
  82. # End of https://www.toptal.com/developers/gitignore/api/node

https://www.toptal.com/developers/gitignore/api/node

jetbrains


  1. # Created by https://www.toptal.com/developers/gitignore/api/jetbrains
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=jetbrains
  3. ### JetBrains ###
  4. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  5. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  6. # User-specific stuff
  7. .idea/**/workspace.xml
  8. .idea/**/tasks.xml
  9. .idea/**/usage.statistics.xml
  10. .idea/**/dictionaries
  11. .idea/**/shelf
  12. # Generated files
  13. .idea/**/contentModel.xml
  14. # Sensitive or high-churn files
  15. .idea/**/dataSources/
  16. .idea/**/dataSources.ids
  17. .idea/**/dataSources.local.xml
  18. .idea/**/sqlDataSources.xml
  19. .idea/**/dynamic.xml
  20. .idea/**/uiDesigner.xml
  21. .idea/**/dbnavigator.xml
  22. # Gradle
  23. .idea/**/gradle.xml
  24. .idea/**/libraries
  25. # Gradle and Maven with auto-import
  26. # When using Gradle or Maven with auto-import, you should exclude module files,
  27. # since they will be recreated, and may cause churn. Uncomment if using
  28. # auto-import.
  29. # .idea/artifacts
  30. # .idea/compiler.xml
  31. # .idea/jarRepositories.xml
  32. # .idea/modules.xml
  33. # .idea/*.iml
  34. # .idea/modules
  35. # *.iml
  36. # *.ipr
  37. # CMake
  38. cmake-build-*/
  39. # Mongo Explorer plugin
  40. .idea/**/mongoSettings.xml
  41. # File-based project format
  42. *.iws
  43. # IntelliJ
  44. out/
  45. # mpeltonen/sbt-idea plugin
  46. .idea_modules/
  47. # JIRA plugin
  48. atlassian-ide-plugin.xml
  49. # Cursive Clojure plugin
  50. .idea/replstate.xml
  51. # Crashlytics plugin (for Android Studio and IntelliJ)
  52. com_crashlytics_export_strings.xml
  53. crashlytics.properties
  54. crashlytics-build.properties
  55. fabric.properties
  56. # Editor-based Rest Client
  57. .idea/httpRequests
  58. # Android studio 3.1+ serialized cache file
  59. .idea/caches/build_file_checksums.ser
  60. ### JetBrains Patch ###
  61. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  62. # *.iml
  63. # modules.xml
  64. # .idea/misc.xml
  65. # *.ipr
  66. # Sonarlint plugin
  67. # https://plugins.jetbrains.com/plugin/7973-sonarlint
  68. .idea/**/sonarlint/
  69. # SonarQube Plugin
  70. # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
  71. .idea/**/sonarIssues.xml
  72. # Markdown Navigator plugin
  73. # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
  74. .idea/**/markdown-navigator.xml
  75. .idea/**/markdown-navigator-enh.xml
  76. .idea/**/markdown-navigator/
  77. # Cache file creation bug
  78. # See https://youtrack.jetbrains.com/issue/JBR-2257
  79. .idea/$CACHE_FILE$
  80. # CodeStream plugin
  81. # https://plugins.jetbrains.com/plugin/12206-codestream
  82. .idea/codestream.xml
  83. # End of https://www.toptal.com/developers/gitignore/api/jetbrains

https://www.toptal.com/developers/gitignore/api/jetbrains

refs

https://github.com/toptal/gitignore.io

https://docs.gitignore.io/install/command-line

https://docs.gitignore.io/

gitbook

https://www.gitbook.com



xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


gitignore auto generator的更多相关文章

  1. URL & QRcode auto generator

    URL & QRcode auto generator 二维码 npm & qrcode https://www.npmjs.com/package/qrcode https://ww ...

  2. NGINX configure auto generator

    NGINX configure auto generator The easiest way to configure a performant, secure, and stable NGINX s ...

  3. Spring Boot启动 Unable to build Hibernate SessionFactory; nested exception is org.hibernate.MappingException: Could not instantiate id generator错误

    开始运行得很好的项目,因为前一天高度了项目结构和名称突然报上面的错误 查了很多网上资料很多解决方案 造成这个错误的原因有很多,例如 1.@Entity 类有变动,无非正常生成对应的数据库. 解决:使用 ...

  4. how to auto open demo and create it in a new codesandbox

    how to auto open demo and create it in a new codesandbox markdown & iframe https://ant.design/do ...

  5. Hibernate注解方式配置-继承关系

    在JPA中,实体继承关系的映射策略共有三种:单表继承策略(table per class).Joined策略(table per subclass)和Table_PER_Class策略. 1.单表继承 ...

  6. Hibernate注解使用以及Spring整合

    Hibernate注解使用以及Spring整合 原文转自:http://wanqiufeng.blog.51cto.com/409430/484739 (1) 简介: 在过去几年里,Hibernate ...

  7. @MappedSuperclass注解的使用说明

    转载自:http://blog.sina.com.cn/s/blog_7085382f0100uk4p.html 基于代码复用和模型分离的思想,在项目开发中使用JPA的@MappedSuperclas ...

  8. spring+hibernate实体类注解详解(非原创) + cascade属性取值

    @Entity //继承策略.另一个类继承本类,那么本类里的属性应用到另一个类中 @Inheritance(strategy = InheritanceType.JOINED ) @Table(nam ...

  9. Hibernate3注解[转]

    Hibernate3注解 收藏 1.@Entity(name="EntityName") 必须,name为可选,对应数据库中一的个表 2.@Table(name="&qu ...

随机推荐

  1. 登陆的时候出现javax.xml.bind.DatatypeConverter错误

    错误详情: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/Da ...

  2. (Oracle)关于blob转到目标库报ORA-01461: 仅能绑定要插入 LONG 列的 LONG 值错误解决方案

    在数据抽取时,开发需要clob类型的数据,但是目标库类型是blob类型的,于是抽取的时候报错: ORA-01461: 仅能绑定要插入 LONG 列的 LONG 值错误 可能有以下几种原因: 可能有以下 ...

  3. Trie 前缀树或字典树 确定有限状态自动机

    https://zh.wikipedia.org/wiki/Trie 应用 trie树常用于搜索提示.如当输入一个网址,可以自动搜索出可能的选择.当没有完全匹配的搜索结果,可以返回前缀最相似的可能.[ ...

  4. TCP介绍

    TCP协议,传输控制协议(英语:Transmission Control Protocol,缩写为 TCP)是一种面向连接的.可靠的.基于字节流的传输层通信协议,由IETF的RFC 793定义. TC ...

  5. JetBrains(IEDA、CLion、Pycharm) 学生获得免费使用资格

    JetBrains针对学生推出了免费使用资格,但是很多同学却不知道或者说不知道怎样获得免费资格,只能千辛万苦的去寻找破解密钥,但现在JetBrains针对盗版的封锁越来越严密,很多密钥过一段时间就会失 ...

  6. 扒一扒ELF文件

    ELF文件(Executable Linkable Format)是一种文件存储格式.Linux下的目标文件和可执行文件都按照该格式进行存储,有必要做个总结. 目录 1. 链接举例 2. ELF文件类 ...

  7. loj10103电力

    题目描述 原题来自:CTU Open 2004 求一个图删除一个点之后,联通块最多有多少. 输入格式 多组数据.第一行两个整数 P,C  表示点数和边数.接下来 C 行每行两个整数 ,表示 P1 与 ...

  8. 配合 jekins—springboot脚本

    #!/usr/bin/bash # author : renguangyin@yingu.com current=$(cd `dirname $0`; pwd) cd ${current} ext_n ...

  9. 子网划分、变长子网掩码和TCP/IP排错__IP寻址排错

    1.Cisco推荐使用的排错四步曲: ping环回地址:ping NIC:ping默认网关和ping远端设备. 1. 打开DOS窗口并ping127.0.0.1.这是一个诊断或环回地址,如果你得到一个 ...

  10. Spark+Kafka实时监控Oracle数据预警

    目标: 监控Oracle某张记录表,有新增数据则获取表数据,并推送到微信企业. 流程: Kafka实时监控Oracle指定表,获取该表操作信息(日志),使用Spark Structured Strea ...