.gitignore for Katalon

26 ignore rules for Katalon, ready to copy into your repository.

Test automation solution

The complete .gitignore for Katalon

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:32:21 UTC
# Technologies: Katalon

### Katalon ###
# Java compiled class file
*.class
# Java archive
*.jar
# Log file
*.log
# Vim swap file
*.swp
*.ctxt
# Web application archive
*.war
output
!output/.gitkeep
.mtj.tmp/
build
Libs/TempTestCase*
Libs/TempTestSuite*
# Enterprise archive
*.ear
bin/lib/TempTestCase*
# ZIP archive
*.zip
Reports/
# Gzipped tar archive
*.tar.gz
\.classpath
# RAR archive
*.rar
\.project
\.settings/
# Java crash log
hs_err_pid*
bin/lib/
Libs/
.svn/
# Gradle cache directory
.gradle

What these Katalon rules actually ignore

Every pattern below, and why it belongs in your .gitignore.

Compiled class file

Pattern What it ignores
*.class Java compiled class file
*.swp Vim swap file
output Compiled class file
!output/.gitkeep Compiled class file
build Compiled class file
Libs/TempTestCase* Compiled class file
Libs/TempTestSuite* Compiled class file
bin/lib/TempTestCase* Compiled class file
Reports/ Compiled class file
\.classpath Compiled class file
\.project Compiled class file
\.settings/ Compiled class file
bin/lib/ Compiled class file
Libs/ Compiled class file
.svn/ Compiled class file
.gradle Gradle cache directory

Package Files #

Pattern What it ignores
*.jar Java archive
*.war Web application archive
*.ear Enterprise archive
*.zip ZIP archive
*.tar.gz Gzipped tar archive
*.rar RAR archive
hs_err_pid* Java crash log

Log file

Pattern What it ignores
*.log Log file

BlueJ files

Pattern What it ignores
*.ctxt BlueJ files

Mobile Tools for Java (J2ME)

Pattern What it ignores
.mtj.tmp/ Mobile Tools for Java (J2ME)

How to use this .gitignore for Katalon

  1. Copy the Katalon rules above, or download the file directly.
  2. Create a file named .gitignore at the root of your Git repository and paste the rules into it.
  3. If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
  4. Commit the .gitignore so everyone on the team shares the same rules.

Other Testing .gitignore templates

See every Testing template