Skip to content

Commit 5627497

Browse files
committed
add site.baseurl to next button at bottom of each page.
1 parent ad210d9 commit 5627497

File tree

9 files changed

+12
-16
lines changed

9 files changed

+12
-16
lines changed

basic/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ <h4 id="reset-hard">
730730
dangerous option and is not working directory safe. Any changes not committed will
731731
be lost.
732732
</p>
733-
733+
734734
<pre>
735735
<b>$ git status</b>
736736
# On branch master
@@ -970,5 +970,4 @@ <h4 id="stash-drop">
970970
</div>
971971
</div>
972972

973-
<p><a class="page-button next-page" href="/branching">On to Branching and Merging &#187;</a></p>
974-
973+
<p><a class="page-button next-page" href="{{ site.baseurl }}/branching">On to Branching and Merging &#187;</a></p>

branching/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ <h4 id="branch-last-commit">
150150
<small>see the last commit on each branch</small>
151151
</h4>
152152

153-
<p>If we want to see last commits on each branch
153+
<p>If we want to see last commits on each branch
154154
we can run <code>git branch -v</code> to see them.</p>
155155

156156
<pre>
@@ -860,5 +860,4 @@ <h2>
860860
</div>
861861
</div>
862862

863-
<p><a class="page-button next-page" href="/remotes">On to Sharing and Updating Projects &#187;</a></p>
864-
863+
<p><a class="page-button next-page" href="{{ site.baseurl }}/remotes">On to Sharing and Updating Projects &#187;</a></p>

creating/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ <h2>
139139
</div>
140140
</div>
141141

142-
<p><a class="page-button next-page" href="/basic">On to Basic Snapshotting &#187;</a></p>
142+
<p><a class="page-button next-page" href="{{ site.baseurl }}/basic">On to Basic Snapshotting &#187;</a></p>

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ <h2>How to Think Like Git</h2>
109109
</div>
110110
</div>
111111

112-
<p><a class="page-button next-page" href="/creating">On to Getting and Creating Projects &#187;</a></p>
112+
<p><a class="page-button next-page" href="{{ site.baseurl }}/creating">On to Getting and Creating Projects &#187;</a></p>

remotes/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ <h4 id="remote-rename">
151151
<small>rename remote aliases</small>
152152
</h4>
153153

154-
<p>If you want to rename remote aliases without having to delete them and add them again
154+
<p>If you want to rename remote aliases without having to delete them and add them again
155155
you can do that by running <code>git remote rename [old-alias] [new-alias]</code>. This will
156156
allow you to modify the current name of the remote.</p>
157157

@@ -437,4 +437,4 @@ <h2>
437437
</div>
438438
</div>
439439

440-
<p><a class="page-button next-page" href="/inspect">On to Inspection and Comparison &#187;</a></p>
440+
<p><a class="page-button next-page" href="{{ site.baseurl }}/inspect">On to Inspection and Comparison &#187;</a></p>

zh/basic/index.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -641,5 +641,4 @@ <h4>
641641
</div>
642642
</div>
643643

644-
<p><a href="/zh/branching">到 分支与合并 &#187;</a></p>
645-
644+
<p><a href="{{ site.baseurl }}/zh/branching">到 分支与合并 &#187;</a></p>

zh/branching/index.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -696,5 +696,4 @@ <h2>
696696
</div>
697697
</div>
698698

699-
<p><a href="/zh/remotes">到 分享与更新项目 &#187;</a></p>
700-
699+
<p><a href="{{ site.baseurl }}/zh/remotes">到 分享与更新项目 &#187;</a></p>

zh/creating/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ <h2>
120120
</div>
121121
</div>
122122

123-
<p><a href="/zh/basic">接下来:基本快照 &#187;</a></p>
123+
<p><a href="{{ site.baseurl }}/zh/basic">接下来:基本快照 &#187;</a></p>

zh/remotes/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,4 +318,4 @@ <h2>
318318
</div>
319319
</div>
320320

321-
<p><a href="/zh/inspect">到 检查与比较&#187;</a></p>
321+
<p><a href="{{ site.baseurl }}/zh/inspect">到 检查与比较&#187;</a></p>

0 commit comments

Comments
 (0)