.gitignore for Stella

5 ignore rules for Stella, ready to copy into your repository.

Atari 2600 emulator

The complete .gitignore for Stella

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:31:24 UTC
# Technologies: Stella

### Stella ###
obj/
a.out
*.bin
*.a26
*.a78

What these Stella rules actually ignore

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

Assembled binaries and object directories

Pattern What it ignores
obj/ Assembled binaries and object directories
a.out Assembled binaries and object directories
*.bin Assembled binaries and object directories
*.a26 Assembled binaries and object directories

Add in special Atari 7800-based binaries for good measure

Pattern What it ignores
*.a78 Add in special Atari 7800-based binaries for good measure

How to use this .gitignore for Stella

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