From 99f171bb7ac5032dde256c02476240c0d019a5fe Mon Sep 17 00:00:00 2001 From: "J. Bruce Fields" Date: Tue, 5 Jun 2007 18:33:27 -0400 Subject: user-manual: quick-start updates Update text to reflect new position in appendix. Update the name to reflect the fact that this is closer to reference than tutorial documentation (as suggested by Jonas Fonseca). Signed-off-by: "J. Bruce Fields" --- Documentation/user-manual.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 7eaafa80e9..b64c55f3df 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -27,7 +27,7 @@ $ man git-clone See also <> for a brief overview of git commands, without any explanation. -Also, see <> for ways that you can help make this manual more +Finally, see <> for ways that you can help make this manual more complete. @@ -3669,11 +3669,11 @@ itself! include::glossary.txt[] [[git-quick-start]] -Appendix A: Git Quick Start -=========================== +Appendix A: Git Quick Reference +=============================== -This is a quick summary of the major commands; the following chapters -will explain how these work in more detail. +This is a quick summary of the major commands; the previous chapters +explain how these work in more detail. [[quick-creating-a-new-repository]] Creating a new repository -- cgit v1.2.3 From 1da158ea339e863a1907225501f9153df5741db0 Mon Sep 17 00:00:00 2001 From: Gerrit Pape Date: Tue, 5 Jun 2007 08:47:51 +0000 Subject: Fix typo in remote branch example in git user manual In Documentation/user-manual.txt the example $ git checkout --track -b origin/maint maint under "Getting updates with git pull", should read $ git checkout --track -b maint origin/maint This was noticed by Ron, and reported through http://bugs.debian.org/427502 Signed-off-by: Gerrit Pape Signed-off-by: "J. Bruce Fields" --- Documentation/user-manual.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index b64c55f3df..25695fe77e 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -1682,7 +1682,7 @@ automatically set the default remote branch to pull from at the time that a branch is created: ------------------------------------------------- -$ git checkout --track -b origin/maint maint +$ git checkout --track -b maint origin/maint ------------------------------------------------- In addition to saving you keystrokes, "git pull" also helps you by -- cgit v1.2.3 From 8ceca74a39788eeda64e9aa625fdebaad219ab42 Mon Sep 17 00:00:00 2001 From: "J. Bruce Fields" Date: Tue, 5 Jun 2007 18:42:58 -0400 Subject: user-manual: add a missing section ID I forgot to give an ID for this section. Signed-off-by: "J. Bruce Fields" --- Documentation/user-manual.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 25695fe77e..97b09a9985 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -921,6 +921,7 @@ echo "git diff --stat --summary -M v$last v$new > ../diffstat-$new" and then he just cut-and-pastes the output commands after verifying that they look OK. +[[Finding-comments-with-given-content]] Finding commits referencing a file with given content ----------------------------------------------------- -- cgit v1.2.3 From d9bd321c7b1e2bfff696e10d56eac5b559240e22 Mon Sep 17 00:00:00 2001 From: "J. Bruce Fields" Date: Tue, 6 Feb 2007 02:55:07 -0500 Subject: Documentation: user-manual todo Some more user-manual todo's: how to share objects between repositories, how to recover. Signed-off-by: "J. Bruce Fields" --- Documentation/user-manual.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 97b09a9985..780f0f0ee6 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -3952,3 +3952,7 @@ CVS, Subversion, and just imports of series of release tarballs. More details on gitweb? Write a chapter on using plumbing and writing scripts. + +Alternates, clone -reference, etc. + +git unpack-objects -r for recovery -- cgit v1.2.3 From 23c9ccb215709422f9dff2ace6cf460ceb1e61dc Mon Sep 17 00:00:00 2001 From: "J. Bruce Fields" Date: Sun, 10 Jun 2007 16:20:34 -0400 Subject: tutorial: use "project history" instead of "changelog" in header The word "changelog" seems a little too much like jargon to me, and beginners must understand section headers so they know where to look for help. Signed-off-by: "J. Bruce Fields" --- Documentation/tutorial.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/tutorial.txt b/Documentation/tutorial.txt index f55d4083ed..118ff72869 100644 --- a/Documentation/tutorial.txt +++ b/Documentation/tutorial.txt @@ -132,8 +132,8 @@ and newly modified files, and in both cases it takes a snapshot of the given files and stages that content in the index, ready for inclusion in the next commit. -Viewing the changelog ---------------------- +Viewing project history +----------------------- At any point you can view the history of your changes using -- cgit v1.2.3