-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
75 lines (53 loc) · 939 Bytes
/
.gitignore
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# These folders contain miscellaneous material for each project
_Help/
._Help/
# Contain random testing code
_Help.*
._Help.*
# Bit Torrent Sync Folder
.sync/
# .hidden files
.hidden
# Dolphin File Manager
.directory
.directory.png
.folder.png
.dolphin.folder.png
# GitHub wiki of a repo
# .github.wiki/
# I <3 Sublime
*.sublime-workspace
# I usually create these files for testing and debugging purposes
*.ignore
# Windows Based Stuff
desktop.ini
# The silver searcher ignores
.agignore
# PyCharm
.idea/
# I'm don't even know why I use bower
bower_components
# Python Virtualenv
env/
# Python Packages
*.egg-info/
# IPython Notebook Checkpoints
.ipynb_checkpoints
# Tarballs
*.tar*
# Python Tests Stuff
*.coverage
htmlcov/
# Exuberant CTags
.tags
# Custom Makefiles that I add quick commands to!
Makefile.dzmake
# Bittorrent Sync Files
.sync/
# Ignore other VCS
.bzr/
.hg/
# OSX Stuff
.DS_Store
# Node
node_modules/