.gitignore for ActionScript
9 ignore rules for ActionScript, ready to copy into your repository.
Programming language for Flash
The complete .gitignore for ActionScript
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:27:16 UTC
# Technologies: ActionScript
### ActionScript ###
bin-debug/
bin-release/
[Oo]bj/
[Bb]in/
# Eclipse project settings
.settings/
*.swf
*.air
# iOS app archive
*.ipa
# Android package
*.apk
What these ActionScript rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Build and Release Folders
| Pattern | What it ignores |
|---|---|
bin-debug/ |
Build and Release Folders |
bin-release/ |
Build and Release Folders |
[Oo]bj/ |
Build and Release Folders |
[Bb]in/ |
Build and Release Folders |
Other files and folders
| Pattern | What it ignores |
|---|---|
.settings/ |
Eclipse project settings |
Executables
| Pattern | What it ignores |
|---|---|
*.swf |
Executables |
*.air |
Executables |
*.ipa |
iOS app archive |
*.apk |
Android package |
How to use this .gitignore for ActionScript
- Copy the ActionScript 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.