Skip to content

Commit 3dde24a

Browse files
author
Git for Windows Build Agent
committed
Update 3 packages
mingw-w64-i686-git (2.48.0.rc0.windows.1-1 -> 2.48.0.rc1.windows.1-1) mingw-w64-i686-git-doc-html (2.48.0.rc0.windows.1-1 -> 2.48.0.rc1.windows.1-1) mingw-w64-i686-headers-git (12.0.0.r459.g63f3f2846-2 -> 12.0.0.r459.g63f3f2846-3) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent b42589e commit 3dde24a

File tree

330 files changed

+495
-376
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

330 files changed

+495
-376
lines changed

cmd/git-gui.exe

0 Bytes
Binary file not shown.

cmd/git-receive-pack.exe

0 Bytes
Binary file not shown.

cmd/git-upload-pack.exe

0 Bytes
Binary file not shown.

cmd/git.exe

0 Bytes
Binary file not shown.

cmd/gitk.exe

0 Bytes
Binary file not shown.

cmd/scalar.exe

0 Bytes
Binary file not shown.

cmd/tig.exe

0 Bytes
Binary file not shown.

git-bash.exe

0 Bytes
Binary file not shown.

git-cmd.exe

0 Bytes
Binary file not shown.

mingw32/bin/git-cvsserver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ use File::Path qw/rmtree/;
6969
use File::Basename;
7070
use Getopt::Long qw(:config require_order no_ignore_case);
7171

72-
my $VERSION = '2.48.0.rc0.windows.1';
72+
my $VERSION = '2.48.0.rc1.windows.1';
7373

7474
my $log = GITCVS::log->new();
7575
my $cfg;

mingw32/bin/git-receive-pack.exe

0 Bytes
Binary file not shown.

mingw32/bin/git-shell.exe

3 KB
Binary file not shown.

mingw32/bin/git-upload-archive.exe

0 Bytes
Binary file not shown.

mingw32/bin/git-upload-pack.exe

0 Bytes
Binary file not shown.

mingw32/bin/git.exe

6 KB
Binary file not shown.

mingw32/bin/gitk

Lines changed: 62 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2104,6 +2104,10 @@ proc confirm_popup {msg {owner .}} {
21042104
return $confirm_ok
21052105
}
21062106
2107+
proc haveselectionclipboard {} {
2108+
return [expr {[tk windowingsystem] eq "x11"}]
2109+
}
2110+
21072111
proc setoptions {} {
21082112
global use_ttk
21092113
@@ -2224,7 +2228,7 @@ proc makewindow {} {
22242228
global diffcontextstring diffcontext
22252229
global ignorespace
22262230
global maincursor textcursor curtextcursor
2227-
global rowctxmenu fakerowmenu mergemax wrapcomment
2231+
global rowctxmenu fakerowmenu mergemax wrapcomment wrapdefault
22282232
global highlight_files gdttype
22292233
global searchstring sstring
22302234
global bgcolor fgcolor bglist fglist diffcolors diffbgcolors selectbgcolor
@@ -2358,7 +2362,7 @@ proc makewindow {} {
23582362
set sha1entry .tf.bar.sha1
23592363
set entries $sha1entry
23602364
set sha1but .tf.bar.sha1label
2361-
button $sha1but -text "[mc "SHA1 ID:"] " -state disabled -relief flat \
2365+
button $sha1but -text "[mc "Commit ID:"] " -state disabled -relief flat \
23622366
-command gotocommit -width 8
23632367
$sha1but conf -disabledforeground [$sha1but cget -foreground]
23642368
pack .tf.bar.sha1label -side left
@@ -2566,7 +2570,7 @@ proc makewindow {} {
25662570
set ctext .bleft.bottom.ctext
25672571
text $ctext -background $bgcolor -foreground $fgcolor \
25682572
-state disabled -undo 0 -font textfont \
2569-
-yscrollcommand scrolltext -wrap none \
2573+
-yscrollcommand scrolltext -wrap $wrapdefault \
25702574
-xscrollcommand ".bleft.bottom.sbhorizontal set"
25712575
if {$have_tk85} {
25722576
$ctext conf -tabstyle wordprocessor
@@ -7484,7 +7488,7 @@ proc selectline {l isnew {desired_loc {}} {switch_to_patch 0}} {
74847488
global mergemax numcommits pending_select
74857489
global cmitmode showneartags allcommits
74867490
global targetrow targetid lastscrollrows
7487-
global autoselect autosellen jump_to_here
7491+
global autocopy autoselect autosellen jump_to_here
74887492
global vinlinediff
74897493
74907494
unset -nocomplain pending_select
@@ -7550,9 +7554,13 @@ proc selectline {l isnew {desired_loc {}} {switch_to_patch 0}} {
75507554
75517555
$sha1entry delete 0 end
75527556
$sha1entry insert 0 $id
7553-
if {$autoselect} {
7557+
if {$autoselect && [haveselectionclipboard]} {
75547558
$sha1entry selection range 0 $autosellen
75557559
}
7560+
if {$autocopy} {
7561+
clipboard clear
7562+
clipboard append [string range $id 0 [expr $autosellen - 1]]
7563+
}
75567564
rhighlight_sel $id
75577565
75587566
$ctext conf -state normal
@@ -8897,7 +8905,7 @@ proc sha1change {n1 n2 op} {
88978905
if {$state == "normal"} {
88988906
$sha1but conf -state normal -relief raised -text "[mc "Goto:"] "
88998907
} else {
8900-
$sha1but conf -state disabled -relief flat -text "[mc "SHA1 ID:"] "
8908+
$sha1but conf -state disabled -relief flat -text "[mc "Commit ID:"] "
89018909
}
89028910
}
89038911
@@ -8916,7 +8924,7 @@ proc gotocommit {} {
89168924
set matches [longid $id]
89178925
if {$matches ne {}} {
89188926
if {[llength $matches] > 1} {
8919-
error_popup [mc "Short SHA1 id %s is ambiguous" $id]
8927+
error_popup [mc "Short commit ID %s is ambiguous" $id]
89208928
return
89218929
}
89228930
set id [lindex $matches 0]
@@ -8933,7 +8941,7 @@ proc gotocommit {} {
89338941
return
89348942
}
89358943
if {[regexp {^[0-9a-fA-F]{4,}$} $sha1string]} {
8936-
set msg [mc "SHA1 id %s is not known" $sha1string]
8944+
set msg [mc "Commit ID %s is not known" $sha1string]
89378945
} else {
89388946
set msg [mc "Revision %s is not in the current view" $sha1string]
89398947
}
@@ -11717,12 +11725,13 @@ proc create_prefs_page {w} {
1171711725
1171811726
proc prefspage_general {notebook} {
1171911727
global NS maxwidth maxgraphpct showneartags showlocalchanges
11720-
global tabstop limitdiffs autoselect autosellen extdifftool perfile_attrs
11728+
global tabstop wrapcomment wrapdefault limitdiffs
11729+
global autocopy autoselect autosellen extdifftool perfile_attrs
1172111730
global hideremotes want_ttk have_ttk maxrefs web_browser
1172211731
1172311732
set page [create_prefs_page $notebook.general]
1172411733
11725-
${NS}::label $page.ldisp -text [mc "Commit list display options"]
11734+
${NS}::label $page.ldisp -text [mc "Commit list display options"] -font mainfontbold
1172611735
grid $page.ldisp - -sticky w -pady 10
1172711736
${NS}::label $page.spacer -text " "
1172811737
${NS}::label $page.maxwidthl -text [mc "Maximum graph width (lines)"]
@@ -11735,19 +11744,38 @@ proc prefspage_general {notebook} {
1173511744
${NS}::checkbutton $page.showlocal -text [mc "Show local changes"] \
1173611745
-variable showlocalchanges
1173711746
grid x $page.showlocal -sticky w
11738-
${NS}::checkbutton $page.autoselect -text [mc "Auto-select SHA1 (length)"] \
11739-
-variable autoselect
11740-
spinbox $page.autosellen -from 1 -to 40 -width 4 -textvariable autosellen
11741-
grid x $page.autoselect $page.autosellen -sticky w
1174211747
${NS}::checkbutton $page.hideremotes -text [mc "Hide remote refs"] \
1174311748
-variable hideremotes
1174411749
grid x $page.hideremotes -sticky w
1174511750
11746-
${NS}::label $page.ddisp -text [mc "Diff display options"]
11751+
${NS}::checkbutton $page.autocopy -text [mc "Copy commit ID to clipboard"] \
11752+
-variable autocopy
11753+
grid x $page.autocopy -sticky w
11754+
if {[haveselectionclipboard]} {
11755+
${NS}::checkbutton $page.autoselect -text [mc "Copy commit ID to X11 selection"] \
11756+
-variable autoselect
11757+
grid x $page.autoselect -sticky w
11758+
}
11759+
spinbox $page.autosellen -from 1 -to 40 -width 4 -textvariable autosellen
11760+
${NS}::label $page.autosellenl -text [mc "Length of commit ID to copy"]
11761+
grid x $page.autosellenl $page.autosellen -sticky w
11762+
11763+
${NS}::label $page.ddisp -text [mc "Diff display options"] -font mainfontbold
1174711764
grid $page.ddisp - -sticky w -pady 10
1174811765
${NS}::label $page.tabstopl -text [mc "Tab spacing"]
1174911766
spinbox $page.tabstop -from 1 -to 20 -width 4 -textvariable tabstop
1175011767
grid x $page.tabstopl $page.tabstop -sticky w
11768+
11769+
${NS}::label $page.wrapcommentl -text [mc "Wrap comment text"]
11770+
${NS}::combobox $page.wrapcomment -values {none char word} -state readonly \
11771+
-textvariable wrapcomment
11772+
grid x $page.wrapcommentl $page.wrapcomment -sticky w
11773+
11774+
${NS}::label $page.wrapdefaultl -text [mc "Wrap other text"]
11775+
${NS}::combobox $page.wrapdefault -values {none char word} -state readonly \
11776+
-textvariable wrapdefault
11777+
grid x $page.wrapdefaultl $page.wrapdefault -sticky w
11778+
1175111779
${NS}::checkbutton $page.ntag -text [mc "Display nearby tags/heads"] \
1175211780
-variable showneartags
1175311781
grid x $page.ntag -sticky w
@@ -11776,7 +11804,7 @@ proc prefspage_general {notebook} {
1177611804
pack configure $page.webbrowserf.l -padx 10
1177711805
grid x $page.webbrowserf $page.webbrowser -sticky ew
1177811806
11779-
${NS}::label $page.lgen -text [mc "General options"]
11807+
${NS}::label $page.lgen -text [mc "General options"] -font mainfontbold
1178011808
grid $page.lgen - -sticky w -pady 10
1178111809
${NS}::checkbutton $page.want_ttk -variable want_ttk \
1178211810
-text [mc "Use themed widgets"]
@@ -11795,7 +11823,7 @@ proc prefspage_colors {notebook} {
1179511823
1179611824
set page [create_prefs_page $notebook.colors]
1179711825
11798-
${NS}::label $page.cdisp -text [mc "Colors: press to choose"]
11826+
${NS}::label $page.cdisp -text [mc "Colors: press to choose"] -font mainfontbold
1179911827
grid $page.cdisp - -sticky w -pady 10
1180011828
label $page.ui -padx 40 -relief sunk -background $uicolor
1180111829
${NS}::button $page.uibut -text [mc "Interface"] \
@@ -11853,7 +11881,7 @@ proc prefspage_colors {notebook} {
1185311881
proc prefspage_fonts {notebook} {
1185411882
global NS
1185511883
set page [create_prefs_page $notebook.fonts]
11856-
${NS}::label $page.cfont -text [mc "Fonts: press to choose"]
11884+
${NS}::label $page.cfont -text [mc "Fonts: press to choose"] -font mainfontbold
1185711885
grid $page.cfont - -sticky w -pady 10
1185811886
mkfontdisp mainfont $page [mc "Main font"]
1185911887
mkfontdisp textfont $page [mc "Diff display font"]
@@ -11866,7 +11894,7 @@ proc doprefs {} {
1186611894
global oldprefs prefstop showneartags showlocalchanges
1186711895
global uicolor bgcolor fgcolor ctext diffcolors selectbgcolor markbgcolor
1186811896
global tabstop limitdiffs autoselect autosellen extdifftool perfile_attrs
11869-
global hideremotes want_ttk have_ttk
11897+
global hideremotes want_ttk have_ttk wrapcomment wrapdefault
1187011898
1187111899
set top .gitkprefs
1187211900
set prefstop $top
@@ -11875,7 +11903,7 @@ proc doprefs {} {
1187511903
return
1187611904
}
1187711905
foreach v {maxwidth maxgraphpct showneartags showlocalchanges \
11878-
limitdiffs tabstop perfile_attrs hideremotes want_ttk} {
11906+
limitdiffs tabstop perfile_attrs hideremotes want_ttk wrapcomment wrapdefault} {
1187911907
set oldprefs($v) [set $v]
1188011908
}
1188111909
ttk_toplevel $top
@@ -12001,7 +12029,7 @@ proc prefscan {} {
1200112029
global oldprefs prefstop
1200212030
1200312031
foreach v {maxwidth maxgraphpct showneartags showlocalchanges \
12004-
limitdiffs tabstop perfile_attrs hideremotes want_ttk} {
12032+
limitdiffs tabstop perfile_attrs hideremotes want_ttk wrapcomment wrapdefault} {
1200512033
global $v
1200612034
set $v $oldprefs($v)
1200712035
}
@@ -12015,7 +12043,8 @@ proc prefsok {} {
1201512043
global oldprefs prefstop showneartags showlocalchanges
1201612044
global fontpref mainfont textfont uifont
1201712045
global limitdiffs treediffs perfile_attrs
12018-
global hideremotes
12046+
global hideremotes wrapcomment wrapdefault
12047+
global ctext
1201912048
1202012049
catch {destroy $prefstop}
1202112050
unset prefstop
@@ -12064,6 +12093,12 @@ proc prefsok {} {
1206412093
if {$hideremotes != $oldprefs(hideremotes)} {
1206512094
rereadrefs
1206612095
}
12096+
if {$wrapcomment != $oldprefs(wrapcomment)} {
12097+
$ctext tag conf comment -wrap $wrapcomment
12098+
}
12099+
if {$wrapdefault != $oldprefs(wrapdefault)} {
12100+
$ctext configure -wrap $wrapdefault
12101+
}
1206712102
}
1206812103
1206912104
proc formatdate {d} {
@@ -12532,6 +12567,7 @@ set downarrowlen 5
1253212567
set mingaplen 100
1253312568
set cmitmode "patch"
1253412569
set wrapcomment "none"
12570+
set wrapdefault "none"
1253512571
set showneartags 1
1253612572
set hideremotes 0
1253712573
set maxrefs 20
@@ -12540,6 +12576,7 @@ set maxlinelen 200
1254012576
set showlocalchanges 1
1254112577
set limitdiffs 1
1254212578
set datetimeformat "%Y-%m-%d %H:%M:%S"
12579+
set autocopy 0
1254312580
set autoselect 1
1254412581
set autosellen 40
1254512582
set perfile_attrs 0
@@ -12637,7 +12674,8 @@ config_check_tmp_exists 50
1263712674
1263812675
set config_variables {
1263912676
mainfont textfont uifont tabstop findmergefiles maxgraphpct maxwidth
12640-
cmitmode wrapcomment autoselect autosellen showneartags maxrefs visiblerefs
12677+
cmitmode wrapcomment wrapdefault autocopy autoselect autosellen
12678+
showneartags maxrefs visiblerefs
1264112679
hideremotes showlocalchanges datetimeformat limitdiffs uicolor want_ttk
1264212680
bgcolor fgcolor uifgcolor uifgdisabledcolor colors diffcolors mergecolors
1264312681
markbgcolor diffcontext selectbgcolor foundbgcolor currentsearchhitbgcolor
@@ -12832,7 +12870,7 @@ if {$::tcl_platform(platform) eq {windows} && [file exists $gitk_prefix/etc/git.
1283212870
}
1283312871
}
1283412872
# wait for the window to become visible
12835-
tkwait visibility .
12873+
if {![winfo viewable .]} {tkwait visibility .}
1283612874
set_window_title
1283712875
update
1283812876
readrefs

mingw32/bin/scalar.exe

15.7 KB
Binary file not shown.

mingw32/include/winnt.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10211,11 +10211,10 @@ typedef DWORD (WINAPI *PRTL_RUN_ONCE_INIT_FN)(PRTL_RUN_ONCE, PVOID, PVOID *);
1021110211
PVOID GetFiberData(VOID);
1021210212

1021310213
#if defined (__aarch64__) || defined(__arm64ec__)
10214+
register struct _TEB *__mingw_current_teb __asm__("x18");
1021410215
FORCEINLINE struct _TEB *NtCurrentTeb(VOID)
1021510216
{
10216-
struct _TEB *teb;
10217-
__asm ("mov %0, x18" : "=r" (teb));
10218-
return teb;
10217+
return __mingw_current_teb;
1021910218
}
1022010219
FORCEINLINE PVOID GetCurrentFiber(VOID)
1022110220
{
Binary file not shown.

mingw32/libexec/git-core/git-cvsserver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ use File::Path qw/rmtree/;
6969
use File::Basename;
7070
use Getopt::Long qw(:config require_order no_ignore_case);
7171

72-
my $VERSION = '2.48.0.rc0.windows.1';
72+
my $VERSION = '2.48.0.rc1.windows.1';
7373

7474
my $log = GITCVS::log->new();
7575
my $cfg;
4 KB
Binary file not shown.

mingw32/libexec/git-core/git-gui.tcl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1366,7 +1366,6 @@ set current_diff_path {}
13661366
set is_3way_diff 0
13671367
set is_submodule_diff 0
13681368
set is_conflict_diff 0
1369-
set diff_empty_count 0
13701369
set last_revert {}
13711370
set last_revert_enc {}
13721371

@@ -3605,6 +3604,8 @@ $ui_diff tag configure clr1 -font font_diffbold
36053604
$ui_diff tag configure clr4 -underline 1
36063605

36073606
$ui_diff tag conf d_info -foreground blue -font font_diffbold
3607+
$ui_diff tag conf d_rescan -foreground blue -underline 1 -font font_diffbold
3608+
$ui_diff tag bind d_rescan <Button-1> { clear_diff; rescan ui_ready 0 }
36083609

36093610
$ui_diff tag conf d_cr -elide true
36103611
$ui_diff tag conf d_@ -font font_diffbold
Binary file not shown.
2.5 KB
Binary file not shown.
3 KB
Binary file not shown.
2.5 KB
Binary file not shown.
3.5 KB
Binary file not shown.
3.5 KB
Binary file not shown.
3.5 KB
Binary file not shown.
3.5 KB
Binary file not shown.

mingw32/libexec/git-core/git-send-email

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1544,7 +1544,7 @@ sub gen_header {
15441544
@recipients = unique_email_list(@recipients,@cc,@initial_bcc);
15451545
@recipients = (map { extract_valid_address_or_die($_) } @recipients);
15461546
my $date = format_2822_time($time++);
1547-
my $gitversion = '2.48.0.rc0.windows.1';
1547+
my $gitversion = '2.48.0.rc1.windows.1';
15481548
if ($gitversion =~ m/..GIT_VERSION../) {
15491549
$gitversion = Git::version();
15501550
}
Binary file not shown.
3 KB
Binary file not shown.

mingw32/libexec/git-core/git-svn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use vars qw/ $AUTHOR $VERSION
5252
$_revision $_repository
5353
$_q $_authors $_authors_prog %users/;
5454
$AUTHOR = 'Eric Wong <[email protected]>';
55-
$VERSION = '2.48.0.rc0.windows.1';
55+
$VERSION = '2.48.0.rc1.windows.1';
5656

5757
use Carp qw/croak/;
5858
use File::Basename qw/dirname basename/;

mingw32/libexec/git-core/git.exe

6 KB
Binary file not shown.
0 Bytes
Binary file not shown.

mingw32/libexec/git-core/scalar.exe

15.7 KB
Binary file not shown.

mingw32/share/doc/git-doc/DecisionMaking.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ <h2 id="_other_discussion_venues">Other Discussion Venues</h2>
538538
</div>
539539
<div id="footer">
540540
<div id="footer-text">
541-
Last updated 2024-12-17 11:48:26 UTC
541+
Last updated 2024-12-31 09:54:54 UTC
542542
</div>
543543
</div>
544544
</body>

mingw32/share/doc/git-doc/MyFirstContribution.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2239,7 +2239,7 @@ <h3 id="after-approval"><a class="anchor" href="#after-approval"></a>After Revie
22392239
</div>
22402240
<div id="footer">
22412241
<div id="footer-text">
2242-
Last updated 2024-12-17 11:48:26 UTC
2242+
Last updated 2024-12-31 09:54:54 UTC
22432243
</div>
22442244
</div>
22452245
</body>

mingw32/share/doc/git-doc/MyFirstObjectWalk.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1675,7 +1675,7 @@ <h2 id="_wrapping_up">Wrapping Up</h2>
16751675
</div>
16761676
<div id="footer">
16771677
<div id="footer-text">
1678-
Last updated 2024-12-17 11:48:26 UTC
1678+
Last updated 2024-12-31 09:54:54 UTC
16791679
</div>
16801680
</div>
16811681
</body>

0 commit comments

Comments
 (0)