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.43.0.rc0.windows.1-2 -> 2.43.0.rc1.windows.1-2)
mingw-w64-x86_64-git-doc-html (2.43.0.rc0.windows.1-2 -> 2.43.0.rc1.windows.1-2)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Nov 9, 2023
1 parent ee67b7e commit 9b99302
Show file tree
Hide file tree
Showing 318 changed files with 487 additions and 392 deletions.
Binary file modified cmd/git-gui.exe
Binary file not shown.
Binary file modified cmd/git-receive-pack.exe
Binary file not shown.
Binary file modified cmd/git-upload-pack.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 cmd/scalar.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.
2 changes: 1 addition & 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.43.0.rc0.windows.1';
my $VERSION = '2.43.0.rc1.windows.1';

my $log = GITCVS::log->new();
my $cfg;
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.
Binary file modified mingw64/bin/scalar.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-credential-wincred.exe
Binary file not shown.
2 changes: 1 addition & 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.43.0.rc0.windows.1';
my $VERSION = '2.43.0.rc1.windows.1';

my $log = GITCVS::log->new();
my $cfg;
Expand Down
Binary file modified mingw64/libexec/git-core/git-daemon.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-remote-ftp.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-remote-ftps.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-remote-http.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-remote-https.exe
Binary file not shown.
62 changes: 33 additions & 29 deletions mingw64/libexec/git-core/git-send-email
Original file line number Diff line number Diff line change
Expand Up @@ -842,30 +842,6 @@ $sender = sanitize_address($sender);

$time = time - scalar $#files;

if ($validate) {
# FIFOs can only be read once, exclude them from validation.
my @real_files = ();
foreach my $f (@files) {
unless (-p $f) {
push(@real_files, $f);
}
}

# Run the loop once again to avoid gaps in the counter due to FIFO
# arguments provided by the user.
my $num = 1;
my $num_files = scalar @real_files;
$ENV{GIT_SENDEMAIL_FILE_TOTAL} = "$num_files";
foreach my $r (@real_files) {
$ENV{GIT_SENDEMAIL_FILE_COUNTER} = "$num";
pre_process_file($r, 1);
validate_patch($r, $target_xfer_encoding);
$num += 1;
}
delete $ENV{GIT_SENDEMAIL_FILE_COUNTER};
delete $ENV{GIT_SENDEMAIL_FILE_TOTAL};
}

@files = handle_backup_files(@files);

if (@files) {
Expand Down Expand Up @@ -1536,7 +1512,7 @@ sub gen_header {
@recipients = unique_email_list(@recipients,@cc,@initial_bcc);
@recipients = (map { extract_valid_address_or_die($_) } @recipients);
my $date = format_2822_time($time++);
my $gitversion = '2.43.0.rc0.windows.1';
my $gitversion = '2.43.0.rc1.windows.1';
if ($gitversion =~ m/..GIT_VERSION../) {
$gitversion = Git::version();
}
Expand Down Expand Up @@ -1769,10 +1745,6 @@ EOF
return 1;
}

$in_reply_to = $initial_in_reply_to;
$references = $initial_in_reply_to || '';
$message_num = 0;

sub pre_process_file {
my ($t, $quiet) = @_;

Expand Down Expand Up @@ -2038,6 +2010,38 @@ sub process_file {
return 1;
}

sub initialize_modified_loop_vars {
$in_reply_to = $initial_in_reply_to;
$references = $initial_in_reply_to || '';
$message_num = 0;
}

if ($validate) {
# FIFOs can only be read once, exclude them from validation.
my @real_files = ();
foreach my $f (@files) {
unless (-p $f) {
push(@real_files, $f);
}
}

# Run the loop once again to avoid gaps in the counter due to FIFO
# arguments provided by the user.
my $num = 1;
my $num_files = scalar @real_files;
$ENV{GIT_SENDEMAIL_FILE_TOTAL} = "$num_files";
initialize_modified_loop_vars();
foreach my $r (@real_files) {
$ENV{GIT_SENDEMAIL_FILE_COUNTER} = "$num";
pre_process_file($r, 1);
validate_patch($r, $target_xfer_encoding);
$num += 1;
}
delete $ENV{GIT_SENDEMAIL_FILE_COUNTER};
delete $ENV{GIT_SENDEMAIL_FILE_TOTAL};
}

initialize_modified_loop_vars();
foreach my $t (@files) {
while (!process_file($t)) {
# user edited the file
Expand Down
Binary file modified mingw64/libexec/git-core/git-sh-i18n--envsubst.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/git-shell.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw64/libexec/git-core/git-svn
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ use vars qw/ $AUTHOR $VERSION
$_revision $_repository
$_q $_authors $_authors_prog %users/;
$AUTHOR = 'Eric Wong <[email protected]>';
$VERSION = '2.43.0.rc0.windows.1';
$VERSION = '2.43.0.rc1.windows.1';

use Carp qw/croak/;
use File::Basename qw/dirname basename/;
Expand Down
Binary file modified mingw64/libexec/git-core/git.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/headless-git.exe
Binary file not shown.
Binary file modified mingw64/libexec/git-core/scalar.exe
Binary file not shown.
9 changes: 5 additions & 4 deletions mingw64/share/doc/git-doc/MyFirstContribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -655,11 +655,12 @@ <h3 id="add-new-command"><a class="anchor" href="#add-new-command"></a>Adding a
</div>
</div>
<div class="paragraph">
<p>Be sure to <code>#include "builtin.h"</code> in your <code>psuh.c</code>.</p>
<p>Be sure to <code>#include "builtin.h"</code> in your <code>psuh.c</code>. You&#8217;ll also need to
<code>#include "gettext.h"</code> to use functions related to printing output text.</p>
</div>
<div class="paragraph">
<p>Go ahead and add some throwaway printf to that function. This is a decent
starting point as we can now add build rules and register the command.</p>
<p>Go ahead and add some throwaway printf to the <code>cmd_psuh</code> function. This is a
decent starting point as we can now add build rules and register the command.</p>
</div>
<div class="admonitionblock note">
<table>
Expand Down Expand Up @@ -2216,7 +2217,7 @@ <h3 id="after-approval"><a class="anchor" href="#after-approval"></a>After Revie
</div>
<div id="footer">
<div id="footer-text">
Last updated 2023-11-03 08:04:06 UTC
Last updated 2023-11-08 19:16:20 UTC
</div>
</div>
</body>
Expand Down
7 changes: 4 additions & 3 deletions mingw64/share/doc/git-doc/MyFirstContribution.txt
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,11 @@ in order to keep the declarations alphabetically sorted:
int cmd_psuh(int argc, const char **argv, const char *prefix);
----

Be sure to `#include "builtin.h"` in your `psuh.c`.
Be sure to `#include "builtin.h"` in your `psuh.c`. You'll also need to
`#include "gettext.h"` to use functions related to printing output text.

Go ahead and add some throwaway printf to that function. This is a decent
starting point as we can now add build rules and register the command.
Go ahead and add some throwaway printf to the `cmd_psuh` function. This is a
decent starting point as we can now add build rules and register the command.

NOTE: Your throwaway text, as well as much of the text you will be adding over
the course of this tutorial, is user-facing. That means it needs to be
Expand Down
2 changes: 1 addition & 1 deletion mingw64/share/doc/git-doc/MyFirstObjectWalk.html
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ <h2 id="_wrapping_up">Wrapping Up</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2023-11-03 08:04:06 UTC
Last updated 2023-11-08 19:16:20 UTC
</div>
</div>
</body>
Expand Down
Loading

0 comments on commit 9b99302

Please sign in to comment.