Skip to content

Commit 6a24c6f

Browse files
mtreinishalexchamberlain
authored andcommitted
Add .gitignore file
As part of the normal process of developing python-github-webhook local artifacts are generated from running python code, running tox, and running tests. These are not things that should be committed to the repo. To avoid accidents or mistakes when a file that shouldn't ever be added to the repo is included in a commit this commit adds a .gitignore file and configures it to not include any of these artifacts of normal development. This way including a file like that by mistake is not likely to ever happen. Signed-off-by: Matthew Treinish <mtreinish@kortar.org>
1 parent ddd33ac commit 6a24c6f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
__pycache__
2+
.tox/*
3+
*.pyc
4+
.coverage*
5+
!.coveragerc
6+
*egg*

0 commit comments

Comments
 (0)