.gitignore for Calabash

7 ignore rules for Calabash, ready to copy into your repository.

Mobile app testing framework

The complete .gitignore for Calabash

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:33:20 UTC
# Technologies: Calabash

### Calabash ###
rerun/
reports/
screenshots/
screenshot*.png
test-servers/
.bundle
vendor

What these Calabash rules actually ignore

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

Calabash / Cucumber

Pattern What it ignores
rerun/ Calabash / Cucumber
reports/ Calabash / Cucumber
screenshots/ Calabash / Cucumber
screenshot*.png Calabash / Cucumber
test-servers/ Calabash / Cucumber
.bundle bundler
vendor Calabash / Cucumber

How to use this .gitignore for Calabash

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