Skip to content

Commit

Permalink
Allow forcing of a parent commit, even if the parent is not a direct …
Browse files Browse the repository at this point in the history
…one.

This can be used to compress multiple changesets into one, for example
like

	git cvsexportcommit -P cvshead mybranch

without having to do so in git first.

Signed-off-by: Simon 'corecode' Schubert <corecode@fs.ei.tum.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Simon 'corecode' Schubert authored and Junio C Hamano committed Feb 5, 2007
1 parent 4c55068 commit ca28370
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Documentation/git-cvsexportcommit.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ git-cvsexportcommit - Export a single commit to a CVS checkout

SYNOPSIS
--------
'git-cvsexportcommit' [-h] [-v] [-c] [-p] [-a] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID
'git-cvsexportcommit' [-h] [-v] [-c] [-P] [-p] [-a] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID


DESCRIPTION
Expand Down Expand Up @@ -46,6 +46,9 @@ OPTIONS
-f::
Force the merge even if the files are not up to date.

-P::
Force the parent commit, even if it is not a direct parent.

-m::
Prepend the commit message with the provided prefix.
Useful for patch series and the like.
Expand Down
6 changes: 3 additions & 3 deletions git-cvsexportcommit.perl
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
die "GIT_DIR is not defined or is unreadable";
}

our ($opt_h, $opt_p, $opt_v, $opt_c, $opt_f, $opt_a, $opt_m );
our ($opt_h, $opt_P, $opt_p, $opt_v, $opt_c, $opt_f, $opt_a, $opt_m );

getopts('hpvcfam:');
getopts('hPpvcfam:');

$opt_h && usage();

Expand Down Expand Up @@ -89,7 +89,7 @@
last;
}; # found it
}
die "Did not find $parent in the parents for this commit!" if !$found;
die "Did not find $parent in the parents for this commit!" if !$found and !$opt_P;
} else { # we don't have a parent from the cmdline...
if (@parents == 1) { # it's safe to get it from the commit
$parent = $parents[0];
Expand Down

0 comments on commit ca28370

Please sign in to comment.