vcs-svn: add fast_export_note to create notes
authorDmitry Ivankov <divanorama@gmail.com>
Wed, 19 Sep 2012 15:21:24 +0000 (17:21 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 7 Oct 2012 21:10:17 +0000 (14:10 -0700)
commit3c23953fb220675c1387c8afc23e0cb7c7ed914c
tree5dcbce0798b51bb671233b6d9e97fbc8ce1f5258
parentf6529de9f4fc66de7679fa1204da1da50f6292fb
vcs-svn: add fast_export_note to create notes

fast_export lacked a method to writes notes to fast-import stream.
Add two new functions fast_export_note which is similar to
fast_export_modify. And also add fast_export_buf_to_data to be able to
write inline blobs that don't come from a line_buffer or from delta
application.

To be used like this:

  fast_export_begin_commit("refs/notes/somenotes", ...)
  fast_export_note("refs/heads/master", "inline")
  fast_export_buf_to_data(&data)

or maybe

  fast_export_note("refs/heads/master", sha1)

Signed-off-by: Dmitry Ivankov <divanorama@gmail.com>
Signed-off-by: Florian Achleitner <florian.achleitner.2.6.31@gmail.com>
Acked-by: David Michael Barr <b@rr-dav.id.au>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
vcs-svn/fast_export.c
vcs-svn/fast_export.h