-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
80 lines (60 loc) · 1.79 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
66
67
68
69
70
71
72
73
74
75
76
77
78
###############################################################################
# General
#
######################
# OS generated files #
######################
*~
.fuse_hidden*
.directory
.Trash-*
.nfs*
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
[Dd]esktop.ini
$RECYCLE.BIN/
#
###############################################################################
###############################################################################
# Jekyll generated files
#
# https://github.com/github/gitignore/blob/master/Jekyll.gitignore
# https://github.com/jekyll/jekyll/blob/master/.gitignore
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
Gemfile.lock
#
###############################################################################
###############################################################################
# Test key for local HTTPS testing
#
# Generate your own .key and .crt:
# openssl req -newkey rsa:512 -nodes -keyout test.key -new -x509 -days 365 -subj /CN=localhost -out test.crt
# Run Jekyll:
# 1. [once] setcap CAP_NET_BIND_SERVICE for ruby (`which ruby2.4`)
# 2. [in terminal 1] bundle exec jekyll serve
# 3. [in terminal 2] bundle exec jekyll serve --skip-initial-build --no-watch --port 443 --ssl-key test.key --ssl-cert test.crt
/test.key
/test.crt
#
###############################################################################
###############################################################################
# TOP SECRET private folder :)
#
/private/
#
###############################################################################
###############################################################################
# Include Git files
#
!.gitignore
!.gitattributes
#
###############################################################################