From 651b9bf01eb5eea5effbaa87699e1e64628fd701 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 12 Oct 2010 13:40:55 -0400 Subject: [PATCH] Typo fixes and documentation improvements. --- rcs-fast-export.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rcs-fast-export.rb b/rcs-fast-export.rb index 136256b..e2b8a55 100755 --- a/rcs-fast-export.rb +++ b/rcs-fast-export.rb @@ -34,7 +34,10 @@ When importing a single file, RCS commits are converted one by one. Otherwise, some heuristics is used to determine how to coalesce commits of different. Currently, commits are coalesced if they share the exact same log and symbols, -and if their date differs by no more than a the user-specified fuzziness. +and if their date differs by no more than the user-specified fuzziness. + +Typical usage: + git init && rcs-fast-export.rb . | git fast-import && git reset --hard Options: --help, -h, -? display this help text @@ -493,7 +496,7 @@ module RCS testfiles = @files.dup tree.each { |rcs, rev| self.add(rcs, rev, testfiles) } # the next line is only reached if all the adds were - # succesfull, so the merge is atomic + # successful, so the merge is atomic @files.replace testfiles end -- 2.32.0.93.g670b81a890