Created
January 28, 2021 01:43
-
-
Save sysroad/94d514948a013ee1c6343ea76b9c9aad to your computer and use it in GitHub Desktop.
gitignore_sample
This file contains hidden or 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
# common | |
**/.vscode/* | |
**/!.vscode/settings.json | |
**/!.vscode/tasks.json | |
**/!.vscode/launch.json | |
**/!.vscode/extensions.json | |
**/*.code-workspace | |
**/.vscode-test | |
# output | |
**/bin | |
**/out | |
# binaries | |
*.dll | |
*.exe | |
*.o | |
*.so | |
*.com | |
*.class | |
# log file | |
*.log | |
# non-text documents | |
*.xlsx | |
*.xls | |
*.docs | |
*.ppt | |
*.pptx | |
# archive file, package file | |
*.dmg | |
*.iso | |
*.tar | |
*.zip | |
*.gz | |
# os specific | |
**/.DS_Store | |
**/.bash_history | |
**/.Trashes | |
**/.Thumbs.db | |
**/.ehthumbs.db | |
# Local History for Visual Studio Code | |
**/.history/ | |
# Go-Lang | |
**/node_modules |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment