-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
.gitignore
39 lines (32 loc) · 1.43 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
39
# This file tells git what files to ignore when staging commits.
# Lines that start with '#' are comments.
#
# See https://help.github.com/articles/ignoring-files/ for more info.
#
######################################################################
# The popular text editor `vi` and its derivatives (like `vim`) make
# files with this extension when auto-saving files being edited.
*.swp
# Another popular text editor, `emacs`, also produces backup files
# automatically. These end in the `~` character.
*~
# Mac OS X makes these files to hold Finder window settings.
# See https://en.wikipedia.org/wiki/.DS_Store for more info.
.DS_Store
# Numerous processes may create log files. We don't care about these.
*.log
# We maintain several Vagrant projects as practice labs or other
# instructional material. When a Vagrant project is started, a folder
# named `.vagrant` is created to store metadata associated with that
# project. These are generated automatically, so we never want to
# commit them into this repository. They are therefor ignored here.
.vagrant
# In a number of Vagrant provisioning scenarios, we use pre-defined
# Ansible roles that are defined externally. These are downloaded on-
# demand, and so are not needed in this repository itself.
**/provision/roles
# Terraform's state files contain sensitive information and are never
# really meant to be committed to a version control repository.
.terraform
*.tfstate
*.tfstate.backup