1. 03 8月, 2007 4 次提交
  2. 02 8月, 2007 11 次提交
  3. 01 8月, 2007 14 次提交
  4. 31 7月, 2007 6 次提交
  5. 30 7月, 2007 5 次提交
    • D
      Documentation/gitattributes.txt: typofix · 5c759f96
      David Soria Parra 提交于
      The file used for per-repository attribute setting is not
      $GIT_DIR/info/gitattributes, but $GIT_DIR/info/attributes.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      5c759f96
    • J
      rebase: try not to munge commit log message · d7f6bae2
      Junio C Hamano 提交于
      This makes rebase/am keep the original commit log message
      better, even when it does not conform to "single line paragraph
      to say what it does, then explain and defend why it is a good
      change in later paragraphs" convention.
      
      This change is a two-edged sword.  While the earlier behaviour
      would make such commit log messages more friendly to readers who
      expect to get the birds-eye view with oneline summary formats,
      users who primarily use git as a way to interact with foreign
      SCM systems would not care much about the convenience of oneline
      git log tools, but care more about preserving their own
      convention.  This changes their commits less useful to readers
      who read them with git tools while keeping them more consistent
      with the foreign SCM systems they interact with.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d7f6bae2
    • J
      symbolic-ref, update-ref: do not refuse reflog message with LF · 28388442
      Junio C Hamano 提交于
      Earlier these tools refused to create a reflog entry when the
      message given by the calling Porcelain had a LF in it, partially
      to keep the file format integrity of reflog file, which is
      one-entry-per-line.  These tools should not be dictating such a
      policy.
      
      Instead, let the codepath to write out the reflog entry worry
      about the format integrity and allow messages with LF in them.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      28388442
    • J
      log_ref_write() -- do not chomp reflog message at the first LF · 0ec29a47
      Junio C Hamano 提交于
      A reflog file is organized as one-line-per-entry records, and we
      enforced the file format integrity by chomping the given message
      at the first LF.  This changes it to convert them to SP, which
      is more in line with the --pretty=oneline format.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      0ec29a47
    • J
      Merge branch 'bs/lock' · 922b0e35
      Junio C Hamano 提交于
      * bs/lock:
        Add test for symlinked configuration file updates.
        use lockfile.c routines in git_commit_set_multivar()
        fully resolve symlinks when creating lockfiles
      922b0e35