diff --git a/_layouts/reference.html b/_layouts/reference.html index 2de1967..1dff4bd 100755 --- a/_layouts/reference.html +++ b/_layouts/reference.html @@ -67,19 +67,20 @@

Sharing and Updating Projects

Inspection and Comparison

+
diff --git a/basic/index.html b/basic/index.html index 00a7a1e..3199375 100644 --- a/basic/index.html +++ b/basic/index.html @@ -634,7 +634,7 @@ M hello.rb M hello.rb -

Now you can run a git commit which will just record +

Now you can run a git commit which will just record the changes to the README file, not the now unstaged hello.rb.

@@ -735,5 +735,5 @@ M hello.rb
-

On to Branching and Merging »

+

On to Branching and Merging »

diff --git a/branching/index.html b/branching/index.html index 5b71d57..50485c9 100644 --- a/branching/index.html +++ b/branching/index.html @@ -690,5 +690,5 @@ ab5ab4c added erlang -

On to Sharing and Updating Projects »

+

On to Sharing and Updating Projects »

diff --git a/inspect/index.html b/inspect/index.html new file mode 100644 index 0000000..d401d11 --- /dev/null +++ b/inspect/index.html @@ -0,0 +1,50 @@ +--- +layout: reference +--- + +
+

+ + book + + Inspection and Comparison +

+
+

+ In a nutshell blah. +

+
+
+ +
+

+ + docs   + book + + git log + +

+ +
+

Cool.

+
+
+ +
+

+ + docs   + book + + git diff + +

+ +
+

Cool.

+
+
+ +

And that's it! For more information, try reading the +Pro Git book.

diff --git a/remotes/index.html b/remotes/index.html new file mode 100644 index 0000000..8cb62d1 --- /dev/null +++ b/remotes/index.html @@ -0,0 +1,60 @@ +--- +layout: reference +--- + +
+

+ + book + + Sharing and Updating Projects +

+
+

+ In a nutshell you can update your project with git fetch + and share your changes with git push. +

+
+
+ +
+

+ + docs   + book + + git fetch + download new branches and data from a remote repository +

+ +
+ +

+ + docs   + book + + git pull + fetch from a remote repo and try to merge into the current branch +

+
+

Cool.

+
+
+ +
+

+ + docs   + book + + git push + push your new branches and data to a remote repository +

+ +
+

Cool.

+
+
+ +

On to Inspection and Comparison »