aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2022-02-07 22:08:16 +0000
committerFederico Igne <git@federicoigne.com>2022-02-07 22:08:16 +0000
commit1d4f832355cf0d318396a61e3c74a3856b62f4ec (patch)
tree623b027d70f807863541ed64517b060adca9eee2
parent88ad9bc4c999c3e3efc7731822c38f8e8ec6057b (diff)
downloadgitgud-1d4f832355cf0d318396a61e3c74a3856b62f4ec.tar.gz
gitgud-1d4f832355cf0d318396a61e3c74a3856b62f4ec.zip
Fix command name
-rw-r--r--presentation/presentation.html15
-rw-r--r--presentation/presentation.md14
2 files changed, 17 insertions, 12 deletions
diff --git a/presentation/presentation.html b/presentation/presentation.html
index ca899d0..261069b 100644
--- a/presentation/presentation.html
+++ b/presentation/presentation.html
@@ -107,7 +107,7 @@
107<h2>Prepare for a new commit</h2> 107<h2>Prepare for a new commit</h2>
108<ul> 108<ul>
109<li><p><code>git add &lt;path&gt;</code></p></li> 109<li><p><code>git add &lt;path&gt;</code></p></li>
110<li><p><code>git reset &lt;path&gt;</code></p></li> 110<li><p><code>git restore &lt;path&gt;</code></p></li>
111</ul> 111</ul>
112</section></section> 112</section></section>
113<section> 113<section>
@@ -120,8 +120,7 @@
120<section id="commit-changes-1" class="slide level2"> 120<section id="commit-changes-1" class="slide level2">
121<h2>Commit changes</h2> 121<h2>Commit changes</h2>
122<ul> 122<ul>
123<li><p><code>git commit</code></p></li> 123<li><code>git commit</code></li>
124<li><p><code>git commit --amend</code></p></li>
125</ul> 124</ul>
126</section></section> 125</section></section>
127<section> 126<section>
@@ -192,14 +191,18 @@
192<!-- References --> 191<!-- References -->
193<!-- 192<!--
194 193
194Using
195
196- Pandoc 2.13
197- Reveal.js 4.2.0
198
195Compiled with 199Compiled with
196 200
197 pandoc -t revealjs --slide-level=2 -s presentation.md -o presentation.html 201 pandoc -t revealjs --slide-level=2 -s presentation.md -o presentation.html
198 202
199using 203or for a standalone presentation
200 204
201- Pandoc 2.13 205 pandoc -s -S -t revealjs --slide-level=2 -s presentation.md -o presentation.html
202- Reveal.js 4.2.0
203 206
204--> 207-->
205</section> 208</section>
diff --git a/presentation/presentation.md b/presentation/presentation.md
index 7dd1940..cd80eef 100644
--- a/presentation/presentation.md
+++ b/presentation/presentation.md
@@ -74,7 +74,7 @@ css: custom.css
74 74
75- `git add <path>` 75- `git add <path>`
76 76
77- `git reset <path>` 77- `git restore <path>`
78 78
79# Commit changes 79# Commit changes
80 80
@@ -84,8 +84,6 @@ css: custom.css
84 84
85- `git commit` 85- `git commit`
86 86
87- `git commit --amend`
88
89# Branch out 87# Branch out
90 88
91!["D4 Alternative a Framasoft" by David Revoy (CC-BY)][branch] 89!["D4 Alternative a Framasoft" by David Revoy (CC-BY)][branch]
@@ -172,14 +170,18 @@ css: custom.css
172 170
173<!-- 171<!--
174 172
173Using
174
175- Pandoc 2.13
176- Reveal.js 4.2.0
177
175Compiled with 178Compiled with
176 179
177 pandoc -t revealjs --slide-level=2 -s presentation.md -o presentation.html 180 pandoc -t revealjs --slide-level=2 -s presentation.md -o presentation.html
178 181
179using 182or for a standalone presentation
180 183
181- Pandoc 2.13 184 pandoc -s -S -t revealjs --slide-level=2 -s presentation.md -o presentation.html
182- Reveal.js 4.2.0
183 185
184--> 186-->
185 187