1. 16 9月, 2008 1 次提交
  2. 09 8月, 2008 1 次提交
  3. 31 7月, 2008 1 次提交
  4. 24 7月, 2008 1 次提交
  5. 06 7月, 2008 2 次提交
  6. 02 7月, 2008 2 次提交
    • J
      Documentation formatting and cleanup · 483bc4f0
      Jonathan Nieder 提交于
      Following what appears to be the predominant style, format
      names of commands and commandlines both as `teletype text`.
      
      While we're at it, add articles ("a" and "the") in some
      places, italicize the name of the command in the manual page
      synopsis line, and add a comma or two where it seems appropriate.
      Signed-off-by: NJonathan Nieder <jrnieder@uchicago.edu>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      483bc4f0
    • J
      Documentation: be consistent about "git-" versus "git " · b1889c36
      Jonathan Nieder 提交于
      Since the git-* commands are not installed in $(bindir), using
      "git-command <parameters>" in examples in the documentation is
      not a good idea. On the other hand, it is nice to be able to
      refer to each command using one hyphenated word. (There is no
      escaping it, anyway: man page names cannot have spaces in them.)
      
      This patch retains the dash in naming an operation, command,
      program, process, or action. Complete command lines that can
      be entered at a shell (i.e., without options omitted) are
      made to use the dashless form.
      
      The changes consist only of replacing some spaces with hyphens
      and vice versa. After a "s/ /-/g", the unpatched and patched
      versions are identical.
      Signed-off-by: NJonathan Nieder <jrnieder@uchicago.edu>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      b1889c36
  7. 09 6月, 2008 1 次提交
    • S
      Docs: Use "-l::\n--long\n" format in OPTIONS sections · 3240240f
      Stephan Beyer 提交于
      The OPTIONS section of a documentation file contains a list
      of the options a git command accepts.
      
      Currently there are several variants to describe the case that
      different options (almost) do the same in the OPTIONS section.
      
      Some are:
      
       -f, --foo::
       -f|--foo::
       -f | --foo::
      
      But AsciiDoc has the special form:
      
       -f::
       --foo::
      
      This patch applies this form to the documentation of the whole git suite,
      and removes useless em-dash prevention, so \--foo becomes --foo.
      Signed-off-by: NStephan Beyer <s-beyer@gmx.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      3240240f
  8. 07 6月, 2008 1 次提交
  9. 03 6月, 2008 1 次提交
  10. 17 5月, 2008 1 次提交
  11. 04 5月, 2008 1 次提交
  12. 31 3月, 2008 1 次提交
  13. 23 3月, 2008 1 次提交
  14. 26 2月, 2008 2 次提交
  15. 01 2月, 2008 1 次提交
  16. 31 1月, 2008 1 次提交
  17. 07 1月, 2008 1 次提交
    • D
      Documentation: rename gitlink macro to linkgit · 5162e697
      Dan McGee 提交于
      Between AsciiDoc 8.2.2 and 8.2.3, the following change was made to the stock
      Asciidoc configuration:
      
      @@ -149,7 +153,10 @@
       # Inline macros.
       # Backslash prefix required for escape processing.
       # (?s) re flag for line spanning.
      -(?su)[\\]?(?P<name>\w(\w|-)*?):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])=
      +
      +# Explicit so they can be nested.
      +(?su)[\\]?(?P<name>(http|https|ftp|file|mailto|callto|image|link)):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])=
      +
       # Anchor: [[[id]]]. Bibliographic anchor.
       (?su)[\\]?\[\[\[(?P<attrlist>[\w][\w-]*?)\]\]\]=anchor3
       # Anchor: [[id,xreflabel]]
      
      This default regex now matches explicit values, and unfortunately in this
      case gitlink was being matched by just 'link', causing the wrong inline
      macro template to be applied. By renaming the macro, we can avoid being
      matched by the wrong regex.
      Signed-off-by: NDan McGee <dpmcgee@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      5162e697
  18. 03 11月, 2007 1 次提交
  19. 02 11月, 2007 1 次提交
  20. 17 10月, 2007 1 次提交
  21. 14 9月, 2007 1 次提交
  22. 01 9月, 2007 3 次提交
  23. 31 8月, 2007 1 次提交
  24. 18 8月, 2007 1 次提交
  25. 24 7月, 2007 1 次提交
    • J
      filter-branch: Big syntax change; support rewriting multiple refs · dfd05e38
      Johannes Schindelin 提交于
      We used to take the first non-option argument as the name for the new
      branch.  This syntax is not extensible to support rewriting more than just
      HEAD.
      
      Instead, we now have the following syntax:
      
      	git filter-branch [<filter options>...] [<rev-list options>]
      
      All positive refs given in <rev-list options> are rewritten.  Yes,
      in-place.  If a ref was changed, the original head is stored in
      refs/original/$ref now, for your inspecting pleasure, in addition to the
      reflogs (since it is easier to inspect "git show-ref | grep original" than
      to inspect all the reflogs).
      
      This commit also adds the --force option to remove .git-rewrite/ and all
      refs from refs/original/ before filtering.
      Signed-off-by: NJohannes Schindelin <johannes.schindelin@gmx.de>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      dfd05e38
  26. 06 7月, 2007 1 次提交
  27. 05 7月, 2007 2 次提交
  28. 04 7月, 2007 1 次提交