1. 28 12月, 2008 1 次提交
  2. 10 12月, 2008 1 次提交
  3. 12 11月, 2008 3 次提交
  4. 01 10月, 2008 7 次提交
  5. 01 9月, 2008 1 次提交
  6. 31 7月, 2008 1 次提交
  7. 02 7月, 2008 1 次提交
    • 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
  8. 26 6月, 2008 1 次提交
  9. 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
  10. 07 6月, 2008 1 次提交
  11. 20 3月, 2008 1 次提交
  12. 05 2月, 2008 2 次提交
    • D
      git-send-email: Generalize auto-cc recipient mechanism. · 65648283
      David Brown 提交于
      There are a few options to git-send-email to suppress the automatic
      generation of 'Cc' fields: --suppress-from, and --signed-off-cc.
      However, there are other times that git-send-email automatically
      includes Cc'd recipients.  This is not desirable for all development
      environments.
      
      Add a new option --suppress-cc, which can be specified one or more
      times to list the categories of auto-cc fields that should be
      suppressed.  If not specified, it defaults to values to give the same
      behavior as specified by --suppress-from, and --signed-off-cc.  The
      categories are:
      
        self   - patch sender.  Same as --suppress-from.
        author - patch author.
        cc     - cc lines mentioned in the patch.
        cccmd  - avoid running the cccmd.
        sob    - signed off by lines.
        all    - all non-explicit recipients
      Signed-off-by: NDavid Brown <git@davidb.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      65648283
    • M
      git-send-email: ssh/login style password requests · 2363d746
      Michael Witten 提交于
      Whilst convenient, it is most unwise to record passwords
      in any place but one's brain. Moreover, it is especially
      foolish to store them in configuration files, even with
      access permissions set accordingly.
      
      git-send-email has been amended, so that if it detects
      an smtp username without a password, it promptly prompts
      for the password and masks the input for privacy.
      
      Furthermore, the argument to --smtp-pass has been rendered
      optional.
      
      The documentation has been updated to reflect these changes.
      Signed-off-by: NMichael Witten <mfwitten@mit.edu>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      2363d746
  13. 27 1月, 2008 1 次提交
  14. 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
  15. 19 12月, 2007 1 次提交
  16. 08 11月, 2007 1 次提交
  17. 25 10月, 2007 1 次提交
  18. 27 9月, 2007 1 次提交
  19. 03 9月, 2007 1 次提交
    • D
      send-email: Add support for SSL and SMTP-AUTH · 34cc60ce
      Douglas Stockwell 提交于
      Allows username and password to be given using --smtp-user
      and --smtp-pass. SSL use is flagged by --smtp-ssl. These are
      backed by corresponding defaults in the git configuration file.
      
      This implements Junio's 'mail identity' suggestion in a slightly
      more generalised manner. --identity=$identity, backed by
      sendemail.identity indicates that the configuration subsection
      [sendemail "$identity"] should take priority over the [sendemail]
      section for all configuration values.
      Signed-off-by: NDouglas Stockwell <doug@11011.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      34cc60ce
  20. 20 8月, 2007 1 次提交
  21. 18 8月, 2007 2 次提交
  22. 20 7月, 2007 1 次提交
  23. 28 6月, 2007 1 次提交
  24. 27 6月, 2007 1 次提交
  25. 07 6月, 2007 1 次提交
    • J
      War on whitespace · a6080a0a
      Junio C Hamano 提交于
      This uses "git-apply --whitespace=strip" to fix whitespace errors that have
      crept in to our source files over time.  There are a few files that need
      to have trailing whitespaces (most notably, test vectors).  The results
      still passes the test, and build result in Documentation/ area is unchanged.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      a6080a0a
  26. 01 5月, 2007 1 次提交
  27. 26 4月, 2007 1 次提交
  28. 19 3月, 2007 1 次提交
  29. 12 3月, 2007 2 次提交