Skip to content

Commit

Permalink
Add .gitignore file
Browse files Browse the repository at this point in the history
A gitignore file specifies intentionally untracked files that
Git should ignore.
Added temporary files like *.pyc, *.swp and others.

Closes-Bug: #1727618

Change-Id: Iefa297c6992fdc930b69aefb99dadd4dddf974a7
(cherry picked from commit d866a9c)
  • Loading branch information
jumpojoy committed Nov 2, 2017
1 parent 2987f94 commit 8f78d38
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitignore
@@ -0,0 +1,21 @@
# Compiled files
*.py[co]
*.a
*.o
*.so

# Packages/installer info
*.egg
*.egg-info
dist
build
eggs
.eggs
parts
var
sdist
develop-eggs
.installed.cfg

# Other
.*.swp

0 comments on commit 8f78d38

Please sign in to comment.