diff options
author | Jonathan Nieder <jrnieder@uchicago.edu> | 2008-06-30 17:10:25 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-01 17:20:09 -0700 |
commit | 3861cd5582d4ae4b41a3bf4c464e780d1725ad4e (patch) | |
tree | 2700ddcb31870e6278896bbb7491f8f8daa7560b /Documentation/gittutorial.txt | |
parent | whitespace fix in Documentation/git-repack.txt (diff) | |
download | tgif-3861cd5582d4ae4b41a3bf4c464e780d1725ad4e.tar.xz |
Documentation: complicate example of "man git-command"
The manual page for the command invoked as "git clone" is named
git-clone(1), and similarly for the rest of the git commands.
Make sure our first example of this in tutorials makes it clear
that it is the first two words of a command line that make up the
command's name (that is: for example, the effect of "git svn
dcommit" is described in git-svn(1)).
Signed-off-by: Jonathan Nieder <jrnieder@uchicago.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/gittutorial.txt')
-rw-r--r-- | Documentation/gittutorial.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/gittutorial.txt b/Documentation/gittutorial.txt index 3d16e3d449..b833167242 100644 --- a/Documentation/gittutorial.txt +++ b/Documentation/gittutorial.txt @@ -20,10 +20,10 @@ for example, to test the latest version, you may prefer to start with the first two chapters of link:user-manual.html[The Git User's Manual]. First, note that you can get documentation for a command such as "git -diff" with: +log --graph" with: ------------------------------------------------ -$ man git-diff +$ man git-log ------------------------------------------------ It is a good idea to introduce yourself to git with your name and |