.gitignore: add entries for Atmel Studio project files.
Decided to not include project files into the repo, because the projects seem to include some absolute paths, which is not good for developer cooperation.
This commit is contained in:
parent
14788b3fe3
commit
c36f899811
|
|
@ -1,5 +1,6 @@
|
||||||
*.pyc
|
*.pyc
|
||||||
*.hex
|
*.hex
|
||||||
|
*.elf
|
||||||
build
|
build
|
||||||
*~
|
*~
|
||||||
|
|
||||||
|
|
@ -13,3 +14,10 @@ sim
|
||||||
doc
|
doc
|
||||||
datalog.out
|
datalog.out
|
||||||
configtool.ini
|
configtool.ini
|
||||||
|
|
||||||
|
# Atmel Studio project files.
|
||||||
|
.vs/
|
||||||
|
*.atsln
|
||||||
|
*.atsuo
|
||||||
|
*.componentinfo.xml
|
||||||
|
*.cproj
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue