.gitignore for Atmel Studio

10 ignore rules for Atmel Studio, ready to copy into your repository.

IDE for Atmel microcontroller development

The complete .gitignore for Atmel Studio

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:34:06 UTC
# Technologies: Atmel Studio

### Atmel Studio ###
[Dd]ebug/
[Rr]elease/
# Object file
*.o
*.d
*.eep
*.elf
# Hex dump file
*.hex
*.map
*.srec
*.atsuo

What these Atmel Studio rules actually ignore

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

Build Directories

Pattern What it ignores
[Dd]ebug/ Build Directories
[Rr]elease/ Build Directories

Build Results

Pattern What it ignores
*.o Object file
*.d Build Results
*.eep Build Results
*.elf Build Results
*.hex Hex dump file
*.map Build Results
*.srec Build Results

User Specific Files

Pattern What it ignores
*.atsuo User Specific Files

How to use this .gitignore for Atmel Studio

  1. Copy the Atmel Studio 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 IDE .gitignore templates

See every IDE template