-
Notifications
You must be signed in to change notification settings - Fork 0
/
ignore
45 lines (32 loc) · 902 Bytes
/
ignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# References and explanation
# If you use the `git config --global core.excludesFile "~/.gitignore"` method,
# this file will currently be ignored. This file is a default mechanism for
# ignoring files and I use it to establish a baseline environment for myself.
# To fail back to this file, run `git config --global --unset core.excludesFile`
# Gitignore documentation: https://git-scm.com/docs/gitignore
# It does aggregate with repo specific .gitignore methods, so tune this to your
# development environments needs.
# A repository with many excellent examples: https://github.com/github/gitignore
# Mac
.DS_Store
# History and home directory stuff
~/.bash_history
~/.zsh_history
# Some "dotgit" method git paths
~/.cfg
~/.personal/.cfg
# Snyk VSCode cache files
**/.dccache
# Node
npm-debug.log
node_modules
# Windows
Thumbs.db
# WebStorm
.idea/
# vi
*~
# General
log/
*.log
# etc..