* Outdated and broken online versions of user-manual.html
@ 2013-05-10 19:02 W. Trevor King
2013-05-11 7:48 ` Thomas Ackermann
0 siblings, 1 reply; 4+ messages in thread
From: W. Trevor King @ 2013-05-10 19:02 UTC (permalink / raw)
To: Git
[-- Attachment #1: Type: text/plain, Size: 1426 bytes --]
I went to reference some `rebase -i` discussion that landed in 3ca26e8
(Merge branch 'wk/user-manual', 2013-02-25), and I couldn't find a
version of the manual online that contained the new content. There's
a version on kernel.org [1], but that doesn't seem to have been
updated since February. There's also a version on git-scm.com [2],
but this cuts out after the first section (before “Exploring Git
history”). I'm not sure who's in charge of maintaining either
location, or which (if either) is considered “canonical”.
I'm also surprised that I couldn't find a more obvious link to the
manual from git-scm.com (I ended up taking a “See Also” link from
gittutorial(7) [3]). I'm not sure if this is intentional or not,
since git-scm.com does prominently link Pro Git, and that overlaps
fairly significantly with the manual.
Folks with Git installed will generally have man pages, so it's not a
big deal, but having current docs somewhere online to link against
would be nice. I'm also curious if I should be linking against a
particular location.
Cheers,
Trevor
[1]: https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
[2]: http://git-scm.com/docs/user-manual.html
[3]: http://git-scm.com/docs/gittutorial
--
This email may be signed or encrypted with GnuPG (http://www.gnupg.org).
For more information, see http://en.wikipedia.org/wiki/Pretty_Good_Privacy
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Outdated and broken online versions of user-manual.html
2013-05-10 19:02 Outdated and broken online versions of user-manual.html W. Trevor King
@ 2013-05-11 7:48 ` Thomas Ackermann
2013-05-11 11:36 ` Philip Oakley
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Ackermann @ 2013-05-11 7:48 UTC (permalink / raw)
To: git
W. Trevor King <wking <at> tremily.us> writes:
>
> I'm also surprised that I couldn't find a more obvious link to the
> manual from git-scm.com (I ended up taking a “See Also” link from
> gittutorial(7) [3]). I'm not sure if this is intentional or not,
> since git-scm.com does prominently link Pro Git, and that overlaps
> fairly significantly with the manual.
>
> Folks with Git installed will generally have man pages, so it's not a
> big deal, but having current docs somewhere online to link against
> would be nice. I'm also curious if I should be linking against a
> particular location.
>
IMHO user-manual is a natural step for a Git beginner after reading one
of the books like "Pro Git" and before he is ready to digest the man pages.
But up to now there are several problems with user-manual besides the
problems described by Trevor:
(1) Very poor html formatting (document type "book" causes
ugly TOCs per section and there's a "Part I" without a "Part II")
(2) Partly outdated content
(3) Sub-optimal structuring (to-do list as part of the document,
glossary not at the end of the document)
(4) User-manual.PDF uses an independent tool chain which makes it
harder to do improvements for user-manual.html and also is the only
pdf doc we are creating. IMHO we should remove this altogether.
(5) Large overlapping with the tutorials. IMHO all of the
tutorials should be blended into user-manual
I am currently working on (1)-(4) and then aiming for (5).
Comments are welcome ...
---
Thomas
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Outdated and broken online versions of user-manual.html
2013-05-11 7:48 ` Thomas Ackermann
@ 2013-05-11 11:36 ` Philip Oakley
2013-05-20 7:24 ` Jonathan Nieder
0 siblings, 1 reply; 4+ messages in thread
From: Philip Oakley @ 2013-05-11 11:36 UTC (permalink / raw)
To: git, Thomas Ackermann
From: "Thomas Ackermann" <th.acker@arcor.de>
Sent: Saturday, May 11, 2013 8:48 AM
> W. Trevor King <wking <at> tremily.us> writes:
>
>>
>> I'm also surprised that I couldn't find a more obvious link to the
>> manual from git-scm.com (I ended up taking a “See Also” link from
>> gittutorial(7) [3]). I'm not sure if this is intentional or not,
>> since git-scm.com does prominently link Pro Git, and that overlaps
>> fairly significantly with the manual.
>>
>> Folks with Git installed will generally have man pages, so it's not a
>> big deal, but having current docs somewhere online to link against
>> would be nice. I'm also curious if I should be linking against a
>> particular location.
>>
>
> IMHO user-manual is a natural step for a Git beginner after reading
> one
> of the books like "Pro Git" and before he is ready to digest the man
> pages.
> But up to now there are several problems with user-manual besides the
> problems described by Trevor:
> (1) Very poor html formatting (document type "book" causes
> ugly TOCs per section and there's a "Part I" without a "Part II")
> (2) Partly outdated content
> (3) Sub-optimal structuring (to-do list as part of the document,
> glossary not at the end of the document)
> (4) User-manual.PDF uses an independent tool chain which makes it
> harder to do improvements for user-manual.html and also is the only
> pdf doc we are creating. IMHO we should remove this altogether.
> (5) Large overlapping with the tutorials. IMHO all of the
> tutorials should be blended into user-manual
>
> I am currently working on (1)-(4) and then aiming for (5).
> Comments are welcome ...
>
> ---
> Thomas
I too had noticed that both the User-Manual and git Everyday are not
formatted in a manner that allows them to be accessed via 'git help'.
I recently added a '--guides' option to 'git help' (v1.8.2-377-g73903d0)
which will show the common guides but was frustrated that I couldn't
include either the user-manual or everday in the list.
I'd welcome the provision of a 'man'/'html' formatted version of the two
guides. Are you expecting to make then compatible with the man format?
I would be a little cautious of your point 5 if it squoze everything
into one overlong document at the expense of losing the shorter
documents - one can't eat a whole melon in one bite ;-) That said there
is a significant opportunity for rationalisation and clarity
improvement, even if it is only a proper realisation of where we
deliberately duplicate information for ease of user learning.
I also liked the idea of all the documenation being collated into one
Humongous pdf as a reference (there was a patch a while back - don't
have a reference right now).
Philip
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Outdated and broken online versions of user-manual.html
2013-05-11 11:36 ` Philip Oakley
@ 2013-05-20 7:24 ` Jonathan Nieder
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Nieder @ 2013-05-20 7:24 UTC (permalink / raw)
To: Philip Oakley; +Cc: git, Thomas Ackermann
Philip Oakley wrote:
> From: "Thomas Ackermann" <th.acker@arcor.de>
>> (5) Large overlapping with the tutorials. IMHO all of the
>> tutorials should be blended into user-manual
[...]
> I would be a little cautious of your point 5 if it squoze everything into
> one overlong document at the expense of losing the shorter documents - one
> can't eat a whole melon in one bite ;-)
Yes.
Once there was a lovely file at
Documentation/howto/isolate-bugs-with-bisect.txt
explaining how to use "git bisect" to find which commit caused a
kernel regression. That it was a small independent file that didn't
assume the reader had read much before was very helpful, since it
meant people could easily point novices to that page and say "It's
easy!" when asking them to track down a bug.
Nowadays that content is gracefully included in the user-manual under
the heading [[using-bisect]]. But I never point people to it any more;
I just write out the steps by hand, to avoid intimidating them.
Ideally this content would be in an EXAMPLE or TUTORIAL section of the
git-bisect(1) manpage for easier reference.
Thanks,
Jonathan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-05-20 7:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-10 19:02 Outdated and broken online versions of user-manual.html W. Trevor King
2013-05-11 7:48 ` Thomas Ackermann
2013-05-11 11:36 ` Philip Oakley
2013-05-20 7:24 ` Jonathan Nieder
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).