Last active
September 15, 2019 15:34
-
-
Save jastuccio/91c79af1393bf6558c0a9e570c1d87e1 to your computer and use it in GitHub Desktop.
Global .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################### | |
# environment variables file | |
############################################################### | |
*.env | |
############################################################### | |
# General Mac OS | |
############################################################### | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear in the root of a volume | |
.DocumentRevisions-V100 | |
.fseventsd | |
.Spotlight-V100 | |
.TemporaryItems | |
.Trashes | |
.VolumeIcon.icns | |
.com.apple.timemachine.donotpresent | |
# Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk | |
############################################################### | |
# VS Code | |
############################################################### | |
.vscode/* | |
!.vscode/settings.json | |
!.vscode/tasks.json | |
!.vscode/launch.json | |
!.vscode/extensions.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment