git/vcs-svn
Jonathan Nieder 7e11902c99 vcs-svn: add a comment before each commit
Current svn-fe produces output like this:

	blob
	mark :7382321
	data 5
	hello

	blob
	mark :7382322
	data 5
	Hello

	commit
	mark :3
[...]
	M 100644 :7382321 hello.c
	M 100644 :7382322 hello2.c

This means svn-fe has to keep track of the paths modified in each
commit and the corresponding marks, instead of dealing with each file
as it arrives in input and then forgetting about it.  A better
strategy would be to use inline blobs:

	commit
	mark :3
[...]
	M 100644 inline hello.c
	data 5
	hello
[...]

As a first step towards that, teach svn-fe to notice when the
collection of blobs for each commit starts and write a comment
("# commit 3.") there.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
2011-03-07 01:43:57 -06:00
..
fast_export.c vcs-svn: add a comment before each commit 2011-03-07 01:43:57 -06:00
fast_export.h vcs-svn: add a comment before each commit 2011-03-07 01:43:57 -06:00
LICENSE SVN dump parser 2010-08-14 19:35:38 -07:00
line_buffer.c vcs-svn: allow input errors to be detected promptly 2011-03-07 01:32:51 -06:00
line_buffer.h vcs-svn: allow input errors to be detected promptly 2011-03-07 01:32:51 -06:00
line_buffer.txt vcs-svn: teach line_buffer about temporary files 2011-02-26 04:59:37 -06:00
obj_pool.h Add memory pool library 2010-08-14 19:35:37 -07:00
repo_tree.c vcs-svn: use higher mark numbers for blobs 2011-03-07 01:43:57 -06:00
repo_tree.h vcs-svn: simplify repo_modify_path and repo_copy 2011-03-07 00:56:50 -06:00
string_pool.c Add string-specific memory pool 2010-08-14 19:35:37 -07:00
string_pool.h Add string-specific memory pool 2010-08-14 19:35:37 -07:00
string_pool.txt Add string-specific memory pool 2010-08-14 19:35:37 -07:00
svndump.c vcs-svn: add a comment before each commit 2011-03-07 01:43:57 -06:00
svndump.h vcs-svn: Check for errors from open() 2010-11-24 14:51:42 -08:00
trp.h treap: make treap_insert return inserted node 2010-12-07 16:03:55 -08:00
trp.txt treap: make treap_insert return inserted node 2010-12-07 16:03:55 -08:00