-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
65 lines (65 loc) · 1.67 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#==============================================================================
# gitignore [https://git-scm.com/docs/gitignore]
#------------------------------------------------------------------------------
# Author: awmyhr <awmyhr@gmail.com>
# Revised: 2018-07-20
# Created: 2016-09-11
#==============================================================================
#-- Application/OS-specific files to ignore
#------------------------------------------------------------------------------
*.retry
.DS_Store
.ansible/**
.directory
.kdev4
.user
Thumbs.db
**/test*.yml
**/ansible/inventories/user**
**/ansible/inventories/group_vars/user**
#------------------------------------------------------------------------------
#-- Compiled files and build artifacts
#------------------------------------------------------------------------------
**/_build/**
**/build/**
*.class
*.com
*.dll
*.exe
*.inc
*.o
*.pyc
*.so
#------------------------------------------------------------------------------
#-- Archive files (it's better to unpack these files and commit the raw source)
#------------------------------------------------------------------------------
*.7z
*.bz2
*.dmg
*.ear
*.gz
*.iso
*.rar
*.tar
*.tgz
*.zip
#------------------------------------------------------------------------------
#-- Logs, Databases, tempfiles, backups
#------------------------------------------------------------------------------
**/.cache/**
**/cache/**
*.bak
*.log
*.old
*.orig
*.sql
*.swp
*.tmp
*.temp
*~
#------------------------------------------------------------------------------
#-- Exceptions
#------------------------------------------------------------------------------
!.gitignore
!.gitattributes
!.editorconfig