Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
* text eol=lf
# By default, detect text files automatically, and use whatever line terminators make sense for the OS
* text=auto

# Java files are text, and we want Java-friendly readable hunk headers for diff
*.java text diff=java

# Force LF/CRLF format for files that are known to require it.
*.sh text eol=lf
*.bat text eol=crlf

# For some reason the above is not enough, in particular for gradlew.bat,
# as some commands (git status, git add --renormalize) will still change its line endings to LF.
# So, we explicitly tell git not to mess with *.bat line endings.
# It's annoying as git won't show diffs for these files anymore,
# but that's the best I could come up with after an hour of head-scratching.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are always generated, so that's fine.

*.bat binary

4 changes: 4 additions & 0 deletions .github/hibernate-github-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ jira:
ignoreFiles:
# Git
- ".git*"
- "*/.git*"
- ".mailmap"
# Gradle
- "gradlew*"
Expand All @@ -19,6 +20,7 @@ jira:
- "ci/"
- "databases/"
- "*.sh"
- "*.bat"
- "Jenkinsfile"
- "*/Jenkinsfile"
- "*.Jenkinsfile"
Expand All @@ -37,6 +39,8 @@ jira:
- "release/"
- "rules/"
- "shared/"
- ".sdkmanrc"
- "*/.sdkmanrc"
develocity:
buildScan:
addCheck: true
Expand Down
11 changes: 4 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ lib

# IntelliJ specific files/directories
out
.idea
!.idea/codeStyles/Project.xml
!.idea/inspectionProfiles/Project_Default.xml
# See .idea/.gitignore for more precise rules in that directory
*.ipr
*.iws
*.iml
Expand Down Expand Up @@ -47,10 +45,9 @@ ObjectStore
*.hprof
/.nb-gradle/

# Additional databases used in local envs
databases/mysql/
databases/postgis/

# Vim
*.swp
*.swo

# SDKman, used by some module maintainers
.sdkmanrc
9 changes: 9 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .release/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# The folder into which we checkout our release scripts into
*
*
!.gitignore
4 changes: 0 additions & 4 deletions databases/.gitignore

This file was deleted.

4 changes: 3 additions & 1 deletion drivers/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
**/*
*
!.gitignore
!README.adoc
1 change: 0 additions & 1 deletion hibernate-spatial/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions hibernate-spatial/.sdkmanrc

This file was deleted.

Loading