-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
38 lines (33 loc) · 1.02 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
#What is gitignore?
#When you’re working in your copy, Git watches every file in and considers it in three ways:
#Tracked: You’ve already staged or committed the file.
#Untracked: You’ve not staged or committed.
#Ignored: You’ve explicitly told Git to ignore the file(s).
#The .gitignore file tells Git which files to ignore when committing your project to the GitHub repository. gitignore is located in the root directory of your repo.
#Why do I need to ignore files in Git?
#You may want to ignore certain files for multiple reasons:
#The files contain sensitive data.
#The files are system specific and do not need to exist on every machine’s copy.
#Excluding the files maintains system security rules and privileges. (Remember, Git repos only contain the files necessary to get tech support—not to share the entire software.
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
__pycache__/
*.py[cod]
*$py.class
*.so
Python
build/
develop-eggs/
dist/
downloads/