-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
75 lines (68 loc) · 2.06 KB
/
.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
# Do not ignore the .gitignore or any of the other files we've bundled in this
# repository by default. They are intended to remain in your repository.
# We've gone ahead and set up a .gitignore for you. However, as we discussed in
# the git lab, this won't ignore binaries that don't have the .o extension. You
# can add rules to ignore those in this file or you can create an additional
# .gitignore and add the new rule in the relevant subdirectory to what you're
# working on.
#
# You can have a .gitignore in any directory of your repository. If there are
# multiple, they will all work. Note that paths specified in a .gitignore will
# always be relative to where the .gitignore is located, so if you want to
# ignore hw1/executable by putting a .gitignore in hw1/, you would add rule:
#
# executable
#
# If you wanted to ignore hw1/executable from this file, you'd write the
# following at the bottom of this file:
#
# hw1/executable
#
# For more: https://git-scm.com/docs/gitignore
# Windows
# https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# macOS
# https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
.DS_Store
.AppleDouble
.LSOverride
# JetBrains
# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
.idea/**/contentModel.xml
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# VSCode
# https://github.com/github/gitignore/blob/master/Global/VisualStudioCode.gitignore
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
.history/
# Sublime
# https://github.com/github/gitignore/blob/master/Global/SublimeText.gitignore
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
# C++
*.o
hw1/permutations
hw1/company
hw2/interpreter
hw2/bin