-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
36 lines (32 loc) · 1.25 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
# This is a comment.
# Blank lines or lines starting with # are ignored.
# Inline comments are not supported.
# This file contains a list of files to exclude from the git-repository.
#
# Official documentation can be found at https://git-scm.com/docs/gitignore
# See also:
# - https://github.com/github/gitignore/blob/master/Python.gitignore
# - https://raw.githubusercontent.com/pypa/sampleproject/master/.gitignore
# - https://stackoverflow.com/questions/tagged/gitignore
#
# Slashes matter:
# - If there is a slash at the beginning or middle (or both) of the pattern,
# then the pattern is relative to the directory level of the particular .gitignore file itself.
# Otherwise the pattern may also match at any level below the .gitignore level.
#
# - If there is a / at the end of the pattern then the pattern will only match directories,
# otherwise the pattern can match both files and directories.
#
# - Do not add a slash if they are symlinks. Symlinks are always files, even if they point to a dir.
# exclude virtualenv-dir
/.venv/
# exclude dev-symlinks to .venv to make bin/python work
/bin
/lib
/pyvenv.cfg
# exclude generated packages
/dist/
# exclude var-dir with cache-files and other generated files
/var/
# exclude byte-compiled files
__pycache__/