Skip to content

Commit

Permalink
Update 2 packages
Browse files Browse the repository at this point in the history
mingw-w64-x86_64-git (2.34.1.1.2ca94ab318-1 -> 2.35.0.rc0.windows.1-1)
mingw-w64-x86_64-git-doc-html (2.34.1.1.2ca94ab318-1 -> 2.35.0.rc0.windows.1-1)

Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
  • Loading branch information
Git for Windows Build Agent committed Jan 12, 2022
1 parent 9ea43cb commit 4e3578c
Show file tree
Hide file tree
Showing 533 changed files with 2,105 additions and 1,208 deletions.
Binary file modified cmd/git-gui.exe
Binary file not shown.
Binary file modified cmd/git.exe
Binary file not shown.
Binary file modified cmd/gitk.exe
Binary file not shown.
Binary file modified git-bash.exe
Binary file not shown.
Binary file modified git-cmd.exe
Binary file not shown.
21 changes: 20 additions & 1 deletion mingw64/bin/git-cvsserver
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ use File::Path qw/rmtree/;
use File::Basename;
use Getopt::Long qw(:config require_order no_ignore_case);

my $VERSION = '2.34.1.windows.1';
my $VERSION = '2.35.0.rc0.windows.1';

my $log = GITCVS::log->new();
my $cfg;
Expand Down Expand Up @@ -3650,6 +3650,22 @@ package GITCVS::updater;
use strict;
use warnings;
use DBI;
our $_use_fsync;

# n.b. consider using Git.pm
sub use_fsync {
if (!defined($_use_fsync)) {
my $x = $ENV{GIT_TEST_FSYNC};
if (defined $x) {
local $ENV{GIT_CONFIG};
delete $ENV{GIT_CONFIG};
my $v = ::safe_pipe_capture('git', '-c', "test.fsync=$x",
qw(config --type=bool test.fsync));
$_use_fsync = defined($v) ? ($v eq "true\n") : 1;
}
}
$_use_fsync;
}

=head1 METHODS
Expand Down Expand Up @@ -3719,6 +3735,9 @@ sub new
$self->{dbuser},
$self->{dbpass});
die "Error connecting to database\n" unless defined $self->{dbh};
if ($self->{dbdriver} eq 'SQLite' && !use_fsync()) {
$self->{dbh}->do('PRAGMA synchronous = OFF');
}

$self->{tables} = {};
foreach my $table ( keys %{$self->{dbh}->table_info(undef,undef,undef,'TABLE')->fetchall_hashref('TABLE_NAME')} )
Expand Down
Binary file modified mingw64/bin/git-receive-pack.exe
Binary file not shown.
Binary file modified mingw64/bin/git-shell.exe
Binary file not shown.
Binary file modified mingw64/bin/git-upload-archive.exe
Binary file not shown.
Binary file modified mingw64/bin/git-upload-pack.exe
Binary file not shown.
Binary file modified mingw64/bin/git.exe
Binary file not shown.
16 changes: 9 additions & 7 deletions mingw64/libexec/git-core/git-add--interactive
Original file line number Diff line number Diff line change
Expand Up @@ -1236,15 +1236,17 @@ sub prompt_single_character {
ReadMode 'cbreak';
my $key = ReadKey 0;
ReadMode 'restore';
if ($use_termcap and $key eq "\e") {
while (!defined $term_escapes{$key}) {
my $next = ReadKey 0.5;
last if (!defined $next);
$key .= $next;
if (defined $key) {
if ($use_termcap and $key eq "\e") {
while (!defined $term_escapes{$key}) {
my $next = ReadKey 0.5;
last if (!defined $next);
$key .= $next;
}
$key =~ s/\e/^[/;
}
$key =~ s/\e/^[/;
print "$key";
}
print "$key" if defined $key;
print "\n";
return $key;
} else {
Expand Down
Binary file modified mingw64/libexec/git-core/git-add.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-am.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-annotate.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-apply.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-archive.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-bisect--helper.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-blame.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-branch.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-bugreport.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-bundle.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-cat-file.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-check-attr.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-check-ignore.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-check-mailmap.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-check-ref-format.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-checkout--worker.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-checkout-index.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-checkout.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-cherry-pick.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-cherry.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-clean.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-clone.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-column.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-commit-graph.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-commit-tree.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-commit.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-config.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-count-objects.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-credential-cache--daemon.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-credential-cache.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-credential-store.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-credential-wincred.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-credential.exe
Binary file not shown.
21 changes: 20 additions & 1 deletion mingw64/libexec/git-core/git-cvsserver
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ use File::Path qw/rmtree/;
use File::Basename;
use Getopt::Long qw(:config require_order no_ignore_case);

my $VERSION = '2.34.1.windows.1';
my $VERSION = '2.35.0.rc0.windows.1';

my $log = GITCVS::log->new();
my $cfg;
Expand Down Expand Up @@ -3650,6 +3650,22 @@ package GITCVS::updater;
use strict;
use warnings;
use DBI;
our $_use_fsync;

# n.b. consider using Git.pm
sub use_fsync {
if (!defined($_use_fsync)) {
my $x = $ENV{GIT_TEST_FSYNC};
if (defined $x) {
local $ENV{GIT_CONFIG};
delete $ENV{GIT_CONFIG};
my $v = ::safe_pipe_capture('git', '-c', "test.fsync=$x",
qw(config --type=bool test.fsync));
$_use_fsync = defined($v) ? ($v eq "true\n") : 1;
}
}
$_use_fsync;
}

=head1 METHODS
Expand Down Expand Up @@ -3719,6 +3735,9 @@ sub new
$self->{dbuser},
$self->{dbpass});
die "Error connecting to database\n" unless defined $self->{dbh};
if ($self->{dbdriver} eq 'SQLite' && !use_fsync()) {
$self->{dbh}->do('PRAGMA synchronous = OFF');
}

$self->{tables} = {};
foreach my $table ( keys %{$self->{dbh}->table_info(undef,undef,undef,'TABLE')->fetchall_hashref('TABLE_NAME')} )
Expand Down
Binary file modified mingw64/libexec/git-core/git-daemon.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-describe.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-diff-files.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-diff-index.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-diff-tree.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-diff.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-difftool.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-env--helper.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-fast-export.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-fast-import.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-fetch-pack.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-fetch.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw64/libexec/git-core/git-filter-branch
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ if [ "$filter_tag_name" ]; then
git hash-object -t tag -w --stdin) ||
die "Could not create new tag object for $ref"
if git cat-file tag "$ref" | \
sane_grep '^-----BEGIN PGP SIGNATURE-----' >/dev/null 2>&1
grep '^-----BEGIN PGP SIGNATURE-----' >/dev/null 2>&1
then
warn "gpg signature stripped from tag object $sha1t"
fi
Expand Down
Binary file modified mingw64/libexec/git-core/git-fmt-merge-msg.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-for-each-ref.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-for-each-repo.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-format-patch.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-fsck-objects.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-fsck.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-fsmonitor--daemon.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-gc.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-get-tar-commit-id.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-grep.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-hash-object.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-help.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-http-backend.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-http-fetch.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-http-push.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-imap-send.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-index-pack.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-init-db.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-init.exe
Binary file not shown.
9 changes: 3 additions & 6 deletions mingw64/libexec/git-core/git-instaweb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ resolve_full_httpd () {
*apache2*|*lighttpd*|*httpd*)
# yes, *httpd* covers *lighttpd* above, but it is there for clarity
# ensure that the apache2/lighttpd command ends with "-f"
if ! echo "$httpd" | sane_grep -- '-f *$' >/dev/null 2>&1
if ! echo "$httpd" | grep -- '-f *$' >/dev/null 2>&1
then
httpd="$httpd -f"
fi
Expand Down Expand Up @@ -380,10 +380,7 @@ TypesConfig "$fqgitdir/mime.types"
DirectoryIndex gitweb.cgi
EOF

# check to see if Dennis Stosberg's mod_perl compatibility patch
# (<20060621130708.Gcbc6e5c@leonov.stosberg.net>) has been applied
if test -f "$module_path/mod_perl.so" &&
sane_grep 'MOD_PERL' "$root/gitweb.cgi" >/dev/null
if test -f "$module_path/mod_perl.so"
then
# favor mod_perl if available
cat >> "$conf" <<EOF
Expand All @@ -402,7 +399,7 @@ EOF
# plain-old CGI
resolve_full_httpd
list_mods=$(echo "$full_httpd" | sed 's/-f$/-l/')
$list_mods | sane_grep 'mod_cgi\.c' >/dev/null 2>&1 || \
$list_mods | grep 'mod_cgi\.c' >/dev/null 2>&1 || \
if test -f "$module_path/mod_cgi.so"
then
echo "LoadModule cgi_module $module_path/mod_cgi.so" >> "$conf"
Expand Down
Binary file modified mingw64/libexec/git-core/git-interpret-trailers.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-log.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-ls-files.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-ls-remote.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-ls-tree.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-mailinfo.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-mailsplit.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-maintenance.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-merge-base.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-merge-file.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-merge-index.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-merge-ours.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-merge-recursive.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-merge-subtree.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-merge-tree.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-merge.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-mktag.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-mktree.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-multi-pack-index.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-mv.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-name-rev.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-notes.exe
Binary file not shown.
Loading

0 comments on commit 4e3578c

Please sign in to comment.