diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-04-19 13:31:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-19 13:31:27 -0700 |
commit | d7bffe9fb63185fbac6f4f41e9fb760b4f230a7d (patch) | |
tree | 6353306a475ac8f5eba346055207e6378607241a /Documentation/technical | |
parent | Merge branch 'fc/branch-upstream-color' (diff) | |
parent | count-objects: add -H option to humanize sizes (diff) | |
download | tgif-d7bffe9fb63185fbac6f4f41e9fb760b4f230a7d.tar.xz |
Merge branch 'ap/strbuf-humanize'
Teach "--human-readable" aka "-H" option to "git count-objects" to
show various large numbers in Ki/Mi/GiB scaled as necessary.
* ap/strbuf-humanize:
count-objects: add -H option to humanize sizes
strbuf: create strbuf_humanise_bytes() to show byte sizes
Diffstat (limited to 'Documentation/technical')
-rw-r--r-- | Documentation/technical/api-strbuf.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/technical/api-strbuf.txt b/Documentation/technical/api-strbuf.txt index 2c59cb2259..3350d97dda 100644 --- a/Documentation/technical/api-strbuf.txt +++ b/Documentation/technical/api-strbuf.txt @@ -230,6 +230,11 @@ which can be used by the programmer of the callback as she sees fit. destination. This is useful for literal data to be fed to either strbuf_expand or to the *printf family of functions. +`strbuf_humanise_bytes`:: + + Append the given byte size as a human-readable string (i.e. 12.23 KiB, + 3.50 MiB). + `strbuf_addf`:: Add a formatted string to the buffer. |