summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
b96507e)
This doesn't work prior to git 2.8: `git revert` silently ignores the
option and succeeds. We will have to fix CVE-2016-10026 some other way.
This reverts commit
bb5cf4a0940b8fd2750c6175adb15382b84c71e2.
my $rev = shift;
my ($sha1) = $rev =~ /^($sha1_pattern)$/; # untaint
my $rev = shift;
my ($sha1) = $rev =~ /^($sha1_pattern)$/; # untaint
- if (run_or_non('git', 'revert', '--strategy=recursive',
- '--strategy-option=no-renames',
- '--no-commit', $sha1)) {
+ if (run_or_non('git', 'revert', '--no-commit', $sha1)) {