Skip to content

Commit

Permalink
svn import: get all revisions
Browse files Browse the repository at this point in the history
Not skipping the last revision is generally seen as Good Thing. ;-)

Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>
  • Loading branch information
Matthias Urlichs committed Oct 10, 2005
1 parent 22dcbb7 commit 8470b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-svnimport.perl
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ sub commit_all {
}
}

while(++$current_rev < $svn->{'maxrev'}) {
while(++$current_rev <= $svn->{'maxrev'}) {
$svn->{'svn'}->get_log("/",$current_rev,$current_rev,$current_rev,1,1,\&_commit_all,"");
commit_all();
if($opt_l and not --$opt_l) {
Expand Down

0 comments on commit 8470b7f

Please sign in to comment.