Last active
July 29, 2023 05:52
-
-
Save harsha5500/7a104fe5c337a256bf9e0a1a8eb6f885 to your computer and use it in GitHub Desktop.
Gitignore template
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
# General | |
.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 | |
*.code-workspace | |
# Sublime-text | |
*.sublime-project | |
*.sublime-workspace | |
# NODE | |
node_modules/ | |
# Python | |
*.pyc | |
__PYCACHE__ | |
# Intellij | |
.idea | |
# Java and Gradle | |
.gradle | |
build | |
# vim | |
*~ | |
*.~ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment