Skip to content
This repository was archived by the owner on Jul 18, 2024. It is now read-only.

Commit 244959a

Browse files
committed
Add .gitignore and remove .DS_Store
Previously, there was no .gitignore, which led to unwanted files being tracked by git. Now a basic .gitignore has been added, and .DS_Store has been removed. Related-Issue: #24 Signed-off-by: Matt Langbehn <matthew.langbehn@gmail.com>
1 parent 979f2bb commit 244959a

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.DS_Store

-8 KB
Binary file not shown.

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Ignore Vim files
2+
[._]*.s[a-w][a-z]
3+
[._]s[a-w][a-z]
4+
Session.vim
5+
.netrwhist
6+
*~
7+
tags
8+
9+
# Ignore macOS files
10+
*.DS_Store
11+
.AppleDouble
12+
.LSOverride
13+
._*
14+
.DocumentRevisions-V100
15+
.fseventsd
16+
.Spotlight-V100
17+
.TemporaryItems
18+
.Trashes
19+
.VolumeIcon.icns
20+
.com.apple.timemachine.donotpresent
21+
.AppleDB
22+
.AppleDesktop
23+
Network Trash Folder
24+
Temporary Items
25+
.apdisk

0 commit comments

Comments
 (0)