.gitignore for JBoss 4
14 ignore rules for JBoss 4, ready to copy into your repository.
JBoss version 4
The complete .gitignore for JBoss 4
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:34:43 UTC
# Technologies: JBoss 4
### JBoss 4 ###
/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/default/deploy/*.war.failed
What these JBoss 4 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/default/deploy/*.war.failed |
General |
How to use this .gitignore for JBoss 4
- Copy the JBoss 4 rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.