.gitignore for AL (Alternative)
9 ignore rules for AL (Alternative), ready to copy into your repository.
Alternative AL language patterns
The complete .gitignore for AL (Alternative)
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:33:50 UTC
# Technologies: AL (Alternative)
### AL (Alternative) ###
# VS Code workspace settings
.vscode/*
# Shared VS Code settings
!.vscode/settings.json
# VS Code build tasks
!.vscode/tasks.json
# VS Code debug configurations
!.vscode/launch.json
# VS Code recommended extensions
!.vscode/extensions.json
*.code-workspace
.history/
# Application bundle
*.app
.snapshots/*
What these AL (Alternative) rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
.vscode/* |
VS Code workspace settings |
!.vscode/settings.json |
Shared VS Code settings |
!.vscode/tasks.json |
VS Code build tasks |
!.vscode/launch.json |
VS Code debug configurations |
!.vscode/extensions.json |
VS Code recommended extensions |
*.code-workspace |
General |
Local History for Visual Studio Code
| Pattern | What it ignores |
|---|---|
.history/ |
Local History for Visual Studio Code |
*.app |
Application bundle |
.snapshots/* |
Local History for Visual Studio Code |
How to use this .gitignore for AL (Alternative)
- Copy the AL (Alternative) 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.