You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-9Lines changed: 6 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,8 @@ jekyll-theme-chirpy/
55
55
├── _posts # posts stay here
56
56
├── _scripts
57
57
│ └── travis # CI stuff, remove it
58
-
├── .travis.yml # remove it, too
58
+
├── .travis.yml # remove this, too
59
+
├── .github # remove
59
60
├── assets
60
61
├── tabs
61
62
│ └── about.md # the ABOUT page
@@ -65,14 +66,10 @@ jekyll-theme-chirpy/
65
66
├── LICENSE
66
67
├── README.md
67
68
├── _config.yml # configuration file
68
-
├── build.sh # script tool
69
-
├── run.sh # script tool
70
-
├── init.sh # script tool
71
-
├── pv.sh
69
+
├── tools # script tools
72
70
├── feed.xml
73
71
├── index.html
74
72
├── robots.txt
75
-
├── search.json
76
73
└── sitemap.xml
77
74
```
78
75
@@ -98,7 +95,7 @@ The `SITE_URL` was defined by variable `url` in file `_config.yml`.
98
95
You may want to preview the site before publishing, so just run the script tool:
99
96
100
97
```terminal
101
-
$ bash run.sh
98
+
$ bash tools/run.sh
102
99
```
103
100
104
101
>**Note**: The *Recent Update* list requires the latest git-log date of posts, thus make sure the changes in `_posts` have been committed before running this command.
@@ -123,7 +120,7 @@ By deploying your site in this way, you can push the source code to GitHub repos
123
120
**2**. Commit the changes of your repository, then run the initialization script:
124
121
125
122
```console
126
-
$ bash init.sh
123
+
$ bash tools/init.sh
127
124
```
128
125
129
126
It will automatically generates the *Latest Modified Date* and *Categories / Tags* page for the posts.
@@ -142,7 +139,7 @@ For security reasons, GitHub Pages runs on `safe` mode, which means the third-pa
The build results will be stored in the root directory of `<username>.github.io` and don't forget to push the changes of `<username>.github.io` to branch `master` on GitHub.
Copy file name to clipboardExpand all lines: _posts/2019-08-09-getting-started.md
+6-9Lines changed: 6 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,8 @@ jekyll-theme-chirpy/
35
35
├── _posts # posts stay here
36
36
├── _scripts
37
37
│ └── travis # CI stuff, remove it
38
-
├── .travis.yml # remove it, too
38
+
├── .travis.yml # remove this, too
39
+
├── .github # remove
39
40
├── assets
40
41
├── tabs
41
42
│ └── about.md # the ABOUT page
@@ -45,14 +46,10 @@ jekyll-theme-chirpy/
45
46
├── LICENSE
46
47
├── README.md
47
48
├── _config.yml # configuration file
48
-
├── build.sh # script tool
49
-
├── run.sh # script tool
50
-
├── init.sh # script tool
51
-
├── pv.sh
49
+
├── tools # script tools
52
50
├── feed.xml
53
51
├── index.html
54
52
├── robots.txt
55
-
├── search.json
56
53
└── sitemap.xml
57
54
```
58
55
@@ -78,7 +75,7 @@ The `SITE_URL` was defined by variable `url` in file `_config.yml`.
78
75
You may want to preview the site before publishing, so just run the script tool:
79
76
80
77
```terminal
81
-
$ bash run.sh
78
+
$ bash tools/run.sh
82
79
```
83
80
84
81
>**Note**: The *Recent Update* list requires the latest git-log date of posts, thus make sure the changes in `_posts` have been committed before running this command.
@@ -102,7 +99,7 @@ By deploying your site in this way, you can push the source code to GitHub repos
102
99
**2**. Commit the changes of your repository, then run the initialization script:
103
100
104
101
```console
105
-
$ bash init.sh
102
+
$ bash tools/init.sh
106
103
```
107
104
108
105
It will automatically generates the *Latest Modified Date* and *Categories / Tags* page for the posts.
@@ -121,7 +118,7 @@ For security reasons, GitHub Pages runs on `safe` mode, which means the third-pa
The build results will be stored in the root directory of `<username>.github.io` and don't forget to push the changes of `<username>.github.io` to branch `master` on GitHub.
0 commit comments