From fd0a4673a655cb795742e955d9b08f6666559f7e Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Mon, 17 Nov 2008 23:15:23 +0100 Subject: [PATCH] Also read config option rcs.tageachrev --- rcs-fast-export.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rcs-fast-export.rb b/rcs-fast-export.rb index 7478de4..ca4f36f 100755 --- a/rcs-fast-export.rb +++ b/rcs-fast-export.rb @@ -393,6 +393,10 @@ parse_options = { parse_options[:authors].merge! load_authors_file(fn.chomp) end +parse_options[:tag_each_rev] = ( + `git config --bool rcs.tageachrev`.chomp == 'true' +) ? true : false + opts.each do |opt, arg| case opt when '--authors-file' -- 2.32.0.93.g670b81a890