.gitignore for JBoss 6

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

JBoss version 6

The complete .gitignore for JBoss 6

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:34:43 UTC
# Technologies: JBoss 6

### JBoss 6 ###
/server/all/data
/server/all/log
/server/all/tmp
/server/all/work
/server/default/data
/server/default/log
/server/default/tmp
/server/default/work
/server/minimal/data
/server/minimal/log
/server/minimal/tmp
/server/minimal/work
/server/default/deploy/*.xml.failed
/server/jbossweb-standalone/data
/server/default/deploy/*.war.failed
/server/jbossweb-standalone/log
/server/jbossweb-standalone/tmp
/server/jbossweb-standalone/work
/server/standard/data
/server/standard/log
/server/standard/tmp
/server/standard/work
/server/default/deploy/*.jar.failed
/server/default/deploy/*.jar.dodeploy
/server/default/deploy/*.xml.dodeploy
/server/default/deploy/*.war.dodeploy

What these JBoss 6 rules actually ignore

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

General

Pattern What it ignores
/server/all/data General
/server/all/log General
/server/all/tmp General
/server/all/work General
/server/default/data General
/server/default/log General
/server/default/tmp General
/server/default/work General
/server/minimal/data General
/server/minimal/log General
/server/minimal/tmp General
/server/minimal/work General
/server/default/deploy/*.xml.failed Note: there may be other directories that contain *.xml.failed or *.war.failed files
/server/jbossweb-standalone/data General
/server/default/deploy/*.war.failed General
/server/jbossweb-standalone/log General
/server/jbossweb-standalone/tmp General
/server/jbossweb-standalone/work General
/server/standard/data General
/server/standard/log General
/server/standard/tmp General
/server/standard/work General
/server/default/deploy/*.jar.failed General
/server/default/deploy/*.jar.dodeploy General
/server/default/deploy/*.xml.dodeploy General
/server/default/deploy/*.war.dodeploy General

How to use this .gitignore for JBoss 6

  1. Copy the JBoss 6 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 Application Server .gitignore templates

See every Application Server template