Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2307361

Browse filesBrowse files
author
Xhuis
committed
Conflicts III
2 parents d92ec37 + b99b006 commit 2307361
Copy full SHA for 2307361

1,216 files changed

+177,123-22,955Lines changed: 177123 additions & 22955 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.gitignore‎

Copy file name to clipboardExpand all lines: .gitignore
+170Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,173 @@
1010
*.int
1111
*.backup
1212
*.int
13+
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Linux.gitignore
14+
15+
*~
16+
17+
# temporary files which can be created if a process still has a handle open of a deleted file
18+
.fuse_hidden*
19+
20+
# KDE directory preferences
21+
.directory
22+
23+
# Linux trash folder which might appear on any partition or disk
24+
.Trash-*
25+
26+
27+
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Vim.gitignore
28+
29+
# swap
30+
[._]*.s[a-w][a-z]
31+
[._]s[a-w][a-z]
32+
# session
33+
Session.vim
34+
# temporary
35+
.netrwhist
36+
*~
37+
# auto-generated tag files
38+
tags
39+
40+
41+
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Python.gitignore
42+
43+
# Byte-compiled / optimized / DLL files
44+
__pycache__/
45+
*.py[cod]
46+
*$py.class
47+
48+
# C extensions
49+
#*.so
50+
51+
# Distribution / packaging
52+
.Python
53+
env/
54+
build/
55+
develop-eggs/
56+
dist/
57+
downloads/
58+
eggs/
59+
.eggs/
60+
lib/
61+
lib64/
62+
parts/
63+
sdist/
64+
var/
65+
*.egg-info/
66+
.installed.cfg
67+
*.egg
68+
69+
# PyInstaller
70+
# Usually these files are written by a python script from a template
71+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
72+
*.manifest
73+
*.spec
74+
75+
# Installer logs
76+
pip-log.txt
77+
pip-delete-this-directory.txt
78+
79+
# Unit test / coverage reports
80+
htmlcov/
81+
.tox/
82+
.coverage
83+
.coverage.*
84+
.cache
85+
nosetests.xml
86+
coverage.xml
87+
*,cover
88+
.hypothesis/
89+
90+
# Translations
91+
*.mo
92+
*.pot
93+
94+
# Django stuff:
95+
*.log
96+
local_settings.py
97+
98+
# Flask instance folder
99+
instance/
100+
101+
# Scrapy stuff:
102+
.scrapy
103+
104+
# Sphinx documentation
105+
docs/_build/
106+
107+
# PyBuilder
108+
target/
109+
110+
# IPython Notebook
111+
.ipynb_checkpoints
112+
113+
# pyenv
114+
.python-version
115+
116+
# celery beat schedule file
117+
celerybeat-schedule
118+
119+
# dotenv
120+
.env
121+
122+
# virtualenv
123+
venv/
124+
ENV/
125+
126+
# Spyder project settings
127+
.spyderproject
128+
129+
# Rope project settings
130+
.ropeproject
131+
132+
133+
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Windows.gitignore
134+
135+
# Windows image file caches
136+
Thumbs.db
137+
ehthumbs.db
138+
139+
# Folder config file
140+
Desktop.ini
141+
142+
# Recycle Bin used on file shares
143+
$RECYCLE.BIN/
144+
145+
# Windows Installer files
146+
#*.cab
147+
#*.msi
148+
#*.msm
149+
#*.msp
150+
151+
# Windows shortcuts
152+
*.lnk
153+
154+
155+
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/OSX.gitignore
156+
157+
.DS_Store
158+
.AppleDouble
159+
.LSOverride
160+
161+
# Icon must end with two \r
162+
Icon
163+
164+
# Thumbnails
165+
._*
166+
167+
# Files that might appear in the root of a volume
168+
.DocumentRevisions-V100
169+
.fseventsd
170+
.Spotlight-V100
171+
.TemporaryItems
172+
.Trashes
173+
.VolumeIcon.icns
174+
175+
# Directories potentially created on remote AFP share
176+
.AppleDB
177+
.AppleDesktop
178+
Network Trash Folder
179+
Temporary Items
180+
.apdisk
181+
182+

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.