.gitignore for webMethods

14 ignore rules for webMethods, ready to copy into your repository.

Integration platform

The complete .gitignore for webMethods

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:27:45 UTC
# Technologies: webMethods

### webMethods ###
**/IntegrationServer/datastore/
**/IntegrationServer/db/
**/IntegrationServer/DocumentStore/
**/IntegrationServer/lib/
**/IntegrationServer/logs/
**/IntegrationServer/replicate/
**/IntegrationServer/sdk/
**/IntegrationServer/support/
**/IntegrationServer/update/
**/IntegrationServer/userFtpRoot/
**/IntegrationServer/web/
**/IntegrationServer/WmRepository4/
**/IntegrationServer/XAStore/
**/IntegrationServer/packages/Wm*/

What these webMethods rules actually ignore

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

General

Pattern What it ignores
**/IntegrationServer/datastore/ General
**/IntegrationServer/db/ General
**/IntegrationServer/DocumentStore/ General
**/IntegrationServer/lib/ General
**/IntegrationServer/logs/ General
**/IntegrationServer/replicate/ General
**/IntegrationServer/sdk/ General
**/IntegrationServer/support/ General
**/IntegrationServer/update/ General
**/IntegrationServer/userFtpRoot/ General
**/IntegrationServer/web/ General
**/IntegrationServer/WmRepository4/ General
**/IntegrationServer/XAStore/ General
**/IntegrationServer/packages/Wm*/ General

How to use this .gitignore for webMethods

  1. Copy the webMethods 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.