1. 04 3月, 2014 1 次提交
  2. 11 4月, 2013 1 次提交
    • A
      strbuf: create strbuf_humanise_bytes() to show byte sizes · 079b546a
      Antoine Pelisse 提交于
      Humanization of downloaded size is done in the same function as text
      formatting in 'process.c'. The code cannot be reused easily elsewhere.
      
      Separate text formatting from size simplification and make the
      function public in strbuf so that it can easily be used by other
      callers.
      
      We now can use strbuf_humanise_bytes() for both downloaded size and
      download speed calculation. One of the drawbacks is that speed will
      now look like this when download is stalled: "0 bytes/s" instead of
      "0 KiB/s".
      Signed-off-by: NAntoine Pelisse <apelisse@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      079b546a
  3. 17 1月, 2013 1 次提交
    • J
      Allow custom "comment char" · eff80a9f
      Junio C Hamano 提交于
      Some users do want to write a line that begin with a pound sign, #,
      in their commit log message.  Many tracking system recognise
      a token of #<bugid> form, for example.
      
      The support we offer these use cases is not very friendly to the end
      users.  They have a choice between
      
       - Don't do it.  Avoid such a line by rewrapping or indenting; and
      
       - Use --cleanup=whitespace but remove all the hint lines we add.
      
      Give them a way to set a custom comment char, e.g.
      
          $ git -c core.commentchar="%" commit
      
      so that they do not have to do either of the two workarounds.
      
      [jc: although I started the topic, all the tests and documentation
      updates, many of the call sites of the new strbuf_add_commented_*()
      functions, and the change to git-submodule.sh scripted Porcelain are
      from Ralf.]
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      Signed-off-by: NRalf Thielow <ralf.thielow@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      eff80a9f
  4. 27 11月, 2012 1 次提交
  5. 04 11月, 2012 2 次提交
  6. 16 9月, 2012 1 次提交
  7. 25 4月, 2012 1 次提交
  8. 23 2月, 2012 1 次提交
  9. 13 12月, 2011 1 次提交
  10. 09 11月, 2011 1 次提交
    • J
      fmt-merge-msg: Add contents of merged tag in the merge message · 895680f0
      Junio C Hamano 提交于
      When a contributor asks the integrator to merge her history, a signed tag
      can be a good vehicle to communicate the authenticity of the request while
      conveying other information such as the purpose of the topic.
      
      E.g. a signed tag "for-linus" can be created, and the integrator can run:
      
         $ git pull git://example.com/work.git/ for-linus
      
      This would allow the integrator to run "git verify-tag FETCH_HEAD" to
      validate the signed tag.
      
      Update fmt-merge-msg so that it pre-fills the merge message template with
      the body (but not signature) of the tag object to help the integrator write
      a better merge message, in the same spirit as the existing merge.log summary
      lines.
      
      The message that comes from GPG signature validation is also included in
      the merge message template to help the integrator verify it, but they are
      prefixed with "#" to make them comments.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      895680f0
  11. 23 6月, 2011 2 次提交
    • J
      strbuf: allow strbuf_split to work on non-strbufs · 2f1d9e2b
      Jeff King 提交于
      The strbuf_split function takes a strbuf as input, and
      outputs a list of strbufs. However, there is no reason that
      the input has to be a strbuf, and not an arbitrary buffer.
      
      This patch adds strbuf_split_buf for a length-delimited
      buffer, and strbuf_split_str for NUL-terminated strings.
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      2f1d9e2b
    • J
      strbuf_split: add a max parameter · 28fc3a68
      Jeff King 提交于
      Sometimes when splitting, you only want a limited number of
      fields, and for the final field to contain "everything
      else", even if it includes the delimiter.
      
      This patch introduces strbuf_split_max, which provides a
      "max number of fields" parameter; it behaves similarly to
      perl's "split" with a 3rd field.
      
      The existing 2-argument form of strbuf_split is retained for
      compatibility and ease-of-use.
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      28fc3a68
  12. 28 4月, 2011 1 次提交
    • R
      strbuf: clarify assertion in strbuf_setlen() · 7141efab
      René Scharfe 提交于
      Commit a8f3e221 introduced the strbuf_grow() call to strbuf_setlen() to
      make ensure that there was at least one byte available to write the
      mandatory trailing NUL, even for previously unallocated strbufs.
      
      Then b315c5c0 added strbuf_slopbuf for the same reason, only globally for
      all uses of strbufs.
      
      Thus the strbuf_grow() call can be removed now.  This avoids readers of
      strbuf.h from mistakenly thinking that strbuf_setlen() can be used to
      extend a strbuf.
      
      The following assert() needs to be changed to cope with the fact that
      sb->alloc can now be zero, which is OK as long as len is also zero.  As
      suggested by Junio, use the chance to convert it to a die() with a short
      explanatory message.  The pattern of 'die("BUG: ...")' is already used in
      strbuf.c.
      
      This was the only assert() in strbuf.[ch], so assert.h doesn't have to be
      included anymore either.
      Signed-off-by: NRene Scharfe <rene.scharfe@lsrfire.ath.cx>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      7141efab
  13. 31 3月, 2011 1 次提交
  14. 26 2月, 2011 1 次提交
  15. 28 9月, 2010 1 次提交
  16. 15 1月, 2010 1 次提交
  17. 14 1月, 2010 1 次提交
  18. 12 1月, 2010 1 次提交
  19. 16 11月, 2009 1 次提交
  20. 06 8月, 2009 1 次提交
  21. 23 4月, 2009 1 次提交
  22. 23 3月, 2009 2 次提交
  23. 18 12月, 2008 1 次提交
    • L
      Add generic 'strbuf_readlink()' helper function · b11b7e13
      Linus Torvalds 提交于
      It was already what 'git apply' did in read_old_data(), just export it
      as a real function, and make it be more generic.
      
      In particular, this handles the case of the lstat() st_size data not
      matching the readlink() return value properly (which apparently happens
      at least on NTFS under Linux).  But as a result of this you could also
      use the new function without even knowing how big the link is going to
      be, and it will allocate an appropriately sized buffer.
      
      So we pass in the st_size of the link as just a hint, rather than a
      fixed requirement.
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      b11b7e13
  24. 24 11月, 2008 1 次提交
    • R
      add strbuf_expand_dict_cb(), a helper for simple cases · 9b864e73
      René Scharfe 提交于
      The new callback function strbuf_expand_dict_cb() can be used together
      with strbuf_expand() if there is only a small number of placeholders
      for static replacement texts.  It expects its dictionary as an array of
      placeholder+value pairs as context parameter, terminated by an entry
      with the placeholder member set to NULL.
      
      The new helper is intended to aid converting the remaining calls of
      interpolate().  strbuf_expand() is smaller, more flexible and can be
      used to go faster than interpolate(), so it should replace the latter.
      Signed-off-by: NRene Scharfe <rene.scharfe@lsrfire.ath.cx>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      9b864e73
  25. 26 7月, 2008 1 次提交
  26. 14 7月, 2008 2 次提交
  27. 10 2月, 2008 1 次提交
  28. 27 11月, 2007 1 次提交
  29. 23 11月, 2007 1 次提交
  30. 11 11月, 2007 1 次提交
  31. 09 11月, 2007 1 次提交
    • R
      --pretty=format: on-demand format expansion · cde75e59
      René Scharfe 提交于
      Some of the --pretty=format placeholders expansions are expensive to
      calculate.  This is made worse by the current code's use of
      interpolate(), which requires _all_ placeholders are to be prepared
      up front.
      
      One way to speed this up is to check which placeholders are present
      in the format string and to prepare only the expansions that are
      needed.  That still leaves the allocation overhead of interpolate().
      
      Another way is to use a callback based approach together with the
      strbuf library to keep allocations to a minimum and avoid string
      copies.  That's what this patch does.  It introduces a new strbuf
      function, strbuf_expand().
      
      The function takes a format string, list of placeholder strings,
      a user supplied function 'fn', and an opaque pointer 'context'
      to tell 'fn' what thingy to operate on.
      
      The function 'fn' is expected to accept a strbuf, a parsed
      placeholder string and the 'context' pointer, and append the
      interpolated value for the 'context' thingy, according to the
      format specified by the placeholder.
      
      Thanks to Pierre Habouzit for his suggestion to use strchrnul() and
      the code surrounding its callsite.  And thanks to Junio for most of
      this commit message. :)
      
      Here my measurements of most of Paul Mackerras' test cases that
      highlighted the performance problem (best of three runs):
      
      (master)
      $ time git log --pretty=oneline >/dev/null
      
      real    0m0.390s
      user    0m0.340s
      sys     0m0.040s
      
      (master)
      $ time git log --pretty=raw >/dev/null
      
      real    0m0.434s
      user    0m0.408s
      sys     0m0.016s
      
      (master)
      $ time git log --pretty="format:%H {%P} %ct" >/dev/null
      
      real    0m1.347s
      user    0m0.080s
      sys     0m1.256s
      
      (interp_find_active -- Dscho)
      $ time ./git log --pretty="format:%H {%P} %ct" >/dev/null
      
      real    0m0.694s
      user    0m0.020s
      sys     0m0.672s
      
      (strbuf_expand -- this patch)
      $ time ./git log --pretty="format:%H {%P} %ct" >/dev/null
      
      real    0m0.395s
      user    0m0.352s
      sys     0m0.028s
      Signed-off-by: NRene Scharfe <rene.scharfe@lsrfire.ath.cx>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      cde75e59
  32. 06 11月, 2007 1 次提交
  33. 30 9月, 2007 1 次提交
  34. 29 9月, 2007 1 次提交
    • P
      strbuf change: be sure ->buf is never ever NULL. · b315c5c0
      Pierre Habouzit 提交于
      For that purpose, the ->buf is always initialized with a char * buf living
      in the strbuf module. It is made a char * so that we can sloppily accept
      things that perform: sb->buf[0] = '\0', and because you can't pass "" as an
      initializer for ->buf without making gcc unhappy for very good reasons.
      
      strbuf_init/_detach/_grow have been fixed to trust ->alloc and not ->buf
      anymore.
      
      as a consequence strbuf_detach is _mandatory_ to detach a buffer, copying
      ->buf isn't an option anymore, if ->buf is going to escape from the scope,
      and eventually be free'd.
      
      API changes:
        * strbuf_setlen now always works, so just make strbuf_reset a convenience
          macro.
        * strbuf_detatch takes a size_t* optional argument (meaning it can be
          NULL) to copy the buffer's len, as it was needed for this refactor to
          make the code more readable, and working like the callers.
      Signed-off-by: NPierre Habouzit <madcoder@debian.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      b315c5c0
  35. 27 9月, 2007 2 次提交