Java 的 Gitignore 文件
本文通过示例讨论 Java 的 .gitignore 文件,并列出了手动创建 .gitignore 时要遵循的规则。
Java .gitignore 文件概述
在 Git 中,术语“忽略”用于不跟踪 Git 应该忽略的文件,并且它不会影响已跟踪的其他文件。 例如,有时,我们不希望将特定文件发送到 Github 等 Git 服务。
有一个名为.gitignore的文件,通过它我们可以指定需要忽略的文件。 一般来说,该文件是机器生成的。 下面列出了 .gitignore 中一些常见的指定文件:
- 对缓存的依赖。
- 编译好的代码。
- 构建输出目录,例如 /bin、/out 或 /target。
- 生成一些运行时文件,例如 .log、.lock 或 .tmp。
- 隐藏的系统文件,例如 Thumbs.db 或 .DS_Store。
- 您的 IDE 配置文件。
手动创建 .gitignore 文件应遵循的规则
当我们尝试手动创建 .gitignore 文件时,您必须遵循以下规则:
- Git 会忽略以 # 开头的行或空行。
- 应该只遵循标准 glob 模式并递归应用它。
- 为了避免递归,我们可以用 / 开始模式。
- 要指定目录,我们可以以 / 结束模式。
- 要否定模式,我们需要以 ! 开头。
Java 中的 .gitignore 文件示例
下面是专门为 Intellij IDE 项目生成的 .gitignore 示例。 让我们来看看。
### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm, and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# AWS User-specific
.idea/**/aws.xml
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated and may cause churn.
Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
cmake-build-*/
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
# File-based project format
*.iws
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml
# SonarLint plugin
.idea/sonarlint/
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Editor-based Rest Client
.idea/httpRequests
# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
### Intellij Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
# Sonarlint plugin
# https://plugins.jetbrains.com/plugin/7973-sonarlint
.idea/**/sonarlint/
# SonarQube Plugin
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
.idea/**/sonarIssues.xml
# Markdown Navigator plugin
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
.idea/**/markdown-navigator.xml
.idea/**/markdown-navigator-enh.xml
.idea/**/markdown-navigator/
# Cache file creation bug
# See https://youtrack.jetbrains.com/issue/JBR-2257
.idea/$CACHE_FILE$
# CodeStream plugin
# https://plugins.jetbrains.com/plugin/12206-codestream
.idea/codestream.xml
# Azure Toolkit for IntelliJ plugin
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
.idea/**/azureSettings.xml
### Java ###
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
# End of https://www.toptal.com/developers/gitignore/api/java,intellij
.gitignore
文件必须位于根目录中。
相关文章
在 Java 中创建 SSH 连接
发布时间:2023/08/02 浏览次数:91 分类:Java
-
本文讨论如何打开 SSH 连接,并演示如何使用 JSch 和 Apache Mina SSHD 创建 SSH 连接。在 Java 中创建 SSH 连接
Java 中的二进制数加法
发布时间:2023/08/02 浏览次数:65 分类:Java
-
本文介绍如何在 Java 中执行二进制加法。Java 中的二进制数加法 二进制数是 1 和 0 的组合,与算术数不同,相加的方式不同。 二进制数的加法规则为:
Java Spring Boot 中的Autowired
发布时间:2023/08/02 浏览次数:67 分类:Java
-
Spring Boot 是一个流行的 Java 框架。 在Spring Boot中,最常用的注解是@Autowired,主要用于自动收集bean。在这篇文章中,我们将讨论Java Spring Boot中的@Autowired。
Java 中的后缀表达式
发布时间:2023/08/02 浏览次数:136 分类:Java
-
后缀表达式比中缀表达式更容易计算并且速度更快,因为我们不需要处理或遵循任何运算符优先级规则。 此外,后缀表达式不包含任何括号。
Java 中的增量映射
发布时间:2023/08/02 浏览次数:100 分类:Java
-
在 Java 中使用 Map 或 HashMap 时,您可能需要增加该值。 在 Java 中,有很多方法可以增加 Map 的值。方法一:Java中Map值递增的通用方法
设置 java.util.Date 的时区
发布时间:2023/08/02 浏览次数:130 分类:Java
-
本文将介绍如何使用 Java 设置与日期关联的时区。 java.util.Date 没有时区。使用 ZonedDateTime 设置 java.util.Date 的时区
Java Date vs. LocalDate
发布时间:2023/08/02 浏览次数:146 分类:Java
-
本文介绍了 Java 中 Date 和 LocalDate 之间的区别。Java 日期与 LocalDate Date类来自Java util包,LocalDate类被添加到Java的Time包中。 这两个类都用于 Java 中的日期; 让我们看看 Java 中 Date 和 LocalDate 之间
Java 获取星期几
发布时间:2023/08/02 浏览次数:53 分类:Java
-
本文介绍如何使用 Java 获取星期几。Java 获取星期几 有时,在使用 UI 时需要获取一周中的某一天。 在Java中可以通过以下两种方法来实现:
在 Java 中使用 Zellers 同余查找星期几
发布时间:2023/08/02 浏览次数:92 分类:Java
-
本文展示了如何使用 Java 实现 Zeller 的同余法来查找星期几。 另外,我们将看一个带有逐行解释的示例,以使主题更容易。在 Java 中使用 Zeller 的同余式查找星期几