]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/branch.c
branch: use write_file_buf instead of write_file
authorJeff King <peff@peff.net>
Fri, 8 Jul 2016 09:16:53 +0000 (05:16 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 8 Jul 2016 16:47:29 +0000 (09:47 -0700)
commit7eb6e10c9d7f43913615667740d1b22055cfba1f
tree7906886fd00371deab448784296a546ec4f52a57
parente78d5d49935373dabcc40c5e32aefe4956a70b97
branch: use write_file_buf instead of write_file

If we already have a strbuf, then using write_file_buf is a
little nicer to read (no wondering whether "%s" will eat
your NULs), and it's more efficient (no extra formatting
step).

We don't care about the newline magic of write_file(), as we
have our own multi-line content.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/branch.c