.gitignore for IGOR Pro
4 ignore rules for IGOR Pro, ready to copy into your repository.
Scientific data analysis software
The complete .gitignore for IGOR Pro
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 02:27:24 UTC
# Technologies: IGOR Pro
### IGOR Pro ###
*.pxp
*.pxt
*.uxp
*.uxt
What these IGOR Pro rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Avoid including Experiment files: they can be created and edited locally to test the ipf files
| Pattern | What it ignores |
|---|---|
*.pxp |
Avoid including Experiment files: they can be created and edited locally to test the ipf files |
*.pxt |
Avoid including Experiment files: they can be created and edited locally to test the ipf files |
*.uxp |
Avoid including Experiment files: they can be created and edited locally to test the ipf files |
*.uxt |
Avoid including Experiment files: they can be created and edited locally to test the ipf files |
How to use this .gitignore for IGOR Pro
- Copy the IGOR Pro 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.