git-svn log: fix ascending revision ranges
Fixed typo in Git::SVN::Log::git_svn_log_cmd(). Previously a command like "git-svn log -r1:4" would only show a commit log separator. Added tests for ascending and descending revision ranges. Signed-off-by: David D Kilzer <ddkilzer@kilzer.net> Acked-by: Eric Wong <normalperson@yhbt.net>
This commit is contained in:

committed by
Eric Wong

parent
3caf320ba8
commit
fede44b2e1
@ -3798,7 +3798,7 @@ sub git_svn_log_cmd {
|
||||
$c_max = $gs->rev_db_get($r_max);
|
||||
$c_min = $gs->rev_db_get($r_min);
|
||||
if (defined $c_min && defined $c_max) {
|
||||
if ($r_max > $r_max) {
|
||||
if ($r_max > $r_min) {
|
||||
push @cmd, "$c_min..$c_max";
|
||||
} else {
|
||||
push @cmd, "$c_max..$c_min";
|
||||
|
Reference in New Issue
Block a user