Skip to content

Commit 17241e1

Browse files
committed
added all the book/docs links to basic
1 parent a06ffee commit 17241e1

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

basic/index.html

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
---
44

55
<div class="box">
6-
<h2>Basic Snapshotting</h2>
6+
<h2>
7+
<span class="docs">
8+
<a target="new" href="http://progit.org/book/ch2-2.html">book</a>
9+
</span>
10+
Basic Snapshotting
11+
</h2>
712
<div class="block">
813
<p>
914
Git is all about composing and saving snapshots of your project and then
@@ -33,8 +38,8 @@ <h2>Basic Snapshotting</h2>
3338
<div class="box">
3439
<h2>
3540
<span class="docs">
36-
<a href="#">docs</a> &nbsp;
37-
<a href="#">book</a>
41+
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-add.html">docs</a> &nbsp;
42+
<a target="new" href="http://progit.org/book/ch2-2.html#tracking_new_files">book</a>
3843
</span>
3944
<a name="add">git add</a>
4045
<span class="desc">adds file contents to the staging area</span>
@@ -125,8 +130,8 @@ <h2>
125130
<div class="box">
126131
<h2>
127132
<span class="docs">
128-
<a href="#">docs</a> &nbsp;
129-
<a href="#">book</a>
133+
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-status.html">docs</a> &nbsp;
134+
<a target="new" href="http://progit.org/book/ch2-2.html#checking_the_status_of_your_files">book</a>
130135
</span>
131136
<a name="status">git status</a>
132137
<span class="desc">view the status of your files in the working directory and staging area</span>
@@ -209,8 +214,8 @@ <h2>
209214
<div class="box">
210215
<h2>
211216
<span class="docs">
212-
<a href="#">docs</a> &nbsp;
213-
<a href="#">book</a>
217+
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-diff.html">docs</a> &nbsp;
218+
<a target="new" href="http://progit.org/book/ch2-2.html#viewing_your_staged_and_unstaged_changes">book</a>
214219
</span>
215220
<a name="diff">git diff</a>
216221
<span class="desc">shows diff of what is staged and what is modified but unstaged</span>
@@ -411,8 +416,8 @@ <h4>
411416
<div class="box">
412417
<h2>
413418
<span class="docs">
414-
<a href="#">docs</a> &nbsp;
415-
<a href="#">book</a>
419+
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-commit.html">docs</a> &nbsp;
420+
<a target="new" href="http://progit.org/book/ch2-2.html#committing_your_changes">book</a>
416421
</span>
417422
<a name="commit">git commit</a>
418423
<span class="desc">records a snapshot of the staging area</span>
@@ -581,8 +586,8 @@ <h4>
581586
<div class="box">
582587
<h2>
583588
<span class="docs">
584-
<a href="#">docs</a> &nbsp;
585-
<a href="#">book</a>
589+
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-reset.html">docs</a> &nbsp;
590+
<a target="new" href="http://progit.org/book/ch2-4.html#unstaging_a_staged_file">book</a>
586591
</span>
587592
<a name="reset">git reset HEAD</a>
588593
<span class="desc">unstage changes that you have staged</span>
@@ -679,8 +684,8 @@ <h2>
679684
<div class="box">
680685
<h2>
681686
<span class="docs">
682-
<a href="#">docs</a> &nbsp;
683-
<a href="#">book</a>
687+
<a href="http://www.kernel.org/pub/software/scm/git/docs/git-rm.html">docs</a> &nbsp;
688+
<a href="http://progit.org/book/ch2-2.html#removing_files">book</a>
684689
</span>
685690
<a name="rm-mv">git rm</a>
686691
<span class="desc">remove files from the staging area</span>

0 commit comments

Comments
 (0)