1. 08 12月, 2008 1 次提交
  2. 13 11月, 2008 1 次提交
  3. 13 9月, 2008 1 次提交
  4. 25 8月, 2008 1 次提交
  5. 18 8月, 2008 1 次提交
  6. 07 8月, 2008 1 次提交
  7. 03 8月, 2008 1 次提交
  8. 20 7月, 2008 1 次提交
  9. 14 7月, 2008 1 次提交
  10. 09 7月, 2008 1 次提交
  11. 06 7月, 2008 4 次提交
  12. 04 7月, 2008 1 次提交
  13. 03 7月, 2008 1 次提交
  14. 02 7月, 2008 2 次提交
  15. 26 6月, 2008 1 次提交
  16. 22 6月, 2008 1 次提交
  17. 19 6月, 2008 1 次提交
  18. 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
  19. 08 6月, 2008 1 次提交
  20. 07 6月, 2008 2 次提交
  21. 02 6月, 2008 1 次提交
    • C
      Documentation: convert "glossary" and "core-tutorial" to man pages · 497c8331
      Christian Couder 提交于
      This patch renames the following documents and at the same time converts
      them to the man format:
      
      core-tutorial.txt -> gitcore-tutorial.txt
      glossary.txt      -> gitglossary.txt
      
      But as the glossary is included in the user manual and as the new
      gitglossary man page cannot be included as a whole in the user manual,
      the actual glossary content is now in its own "glossary-content.txt"
      new file. And this file is included by both the user manual and the
      gitglossary man page.
      
      Other documents that reference the above ones are changed accordingly
      and sometimes improved a little too.
      Signed-off-by: NChristian Couder <chriscool@tuxfamily.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      497c8331
  22. 28 5月, 2008 1 次提交
  23. 26 5月, 2008 1 次提交
  24. 25 5月, 2008 1 次提交
  25. 24 5月, 2008 1 次提交
    • D
      Add support for GIT_CEILING_DIRECTORIES · 0454dd93
      David Reiss 提交于
      Make git recognize a new environment variable that prevents it from
      chdir'ing up into specified directories when looking for a GIT_DIR.
      Useful for avoiding slow network directories.
      
      For example, I use git in an environment where homedirs are automounted
      and "ls /home/nonexistent" takes about 9 seconds.  Setting
      GIT_CEILING_DIRS="/home" allows "git help -a" (for bash completion) and
      "git symbolic-ref" (for my shell prompt) to run in a reasonable time.
      Signed-off-by: NDavid Reiss <dreiss@facebook.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      0454dd93
  26. 05 5月, 2008 1 次提交
  27. 30 4月, 2008 1 次提交
  28. 21 4月, 2008 1 次提交
  29. 08 4月, 2008 1 次提交
  30. 17 2月, 2008 1 次提交
  31. 12 2月, 2008 1 次提交
  32. 02 2月, 2008 1 次提交
  33. 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
  34. 19 12月, 2007 1 次提交
  35. 15 12月, 2007 1 次提交
    • J
      Start preparing the API documents. · 530e741c
      Junio C Hamano 提交于
      Most of them are still stubs, but the procedure to build the HTML
      documentation, maintaining the index and installing the end product are
      there.
      
      I placed names of people who are likely to know the most about the topic
      in the stub files, so that volunteers will know whom to ask questions as
      needed.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      530e741c