Skip to content

Commit c67d1e2

Browse files
author
Git for Windows Build Agent
committed
Update 2 packages
mingw-w64-x86_64-git (2.50.0.rc0.windows.1-1 -> 2.50.0.rc1.windows.1-1) mingw-w64-x86_64-git-doc-html (2.50.0.rc0.windows.1-1 -> 2.50.0.rc1.windows.1-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 01f77d0 commit c67d1e2

File tree

326 files changed

+1386
-1264
lines changed

Some content is hidden

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

326 files changed

+1386
-1264
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.

mingw64/bin/git-cvsserver

Lines changed: 4 additions & 25 deletions
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.50.0.rc0.windows.1';
72+
my $VERSION = '2.50.0.rc1.windows.1';
7373

7474
my $log = GITCVS::log->new();
7575
my $cfg;
@@ -5029,13 +5029,13 @@ sub gethistorydense
50295029
return $result;
50305030
}
50315031

5032-
=head2 escapeRefName
5032+
=head2 unescapeRefName
50335033
5034-
Apply an escape mechanism to compensate for characters that
5034+
Undo an escape mechanism to compensate for characters that
50355035
git ref names can have that CVS tags can not.
50365036
50375037
=cut
5038-
sub escapeRefName
5038+
sub unescapeRefName
50395039
{
50405040
my($self,$refName)=@_;
50415041

@@ -5052,27 +5052,6 @@ sub escapeRefName
50525052
# = "_-xx-" Where "xx" is the hexadecimal representation of the
50535053
# desired ASCII character byte. (for anything else)
50545054

5055-
if(! $refName=~/^[1-9][0-9]*(\.[1-9][0-9]*)*$/)
5056-
{
5057-
$refName=~s/_-/_-u--/g;
5058-
$refName=~s/\./_-p-/g;
5059-
$refName=~s%/%_-s-%g;
5060-
$refName=~s/[^-_a-zA-Z0-9]/sprintf("_-%02x-",$1)/eg;
5061-
}
5062-
}
5063-
5064-
=head2 unescapeRefName
5065-
5066-
Undo an escape mechanism to compensate for characters that
5067-
git ref names can have that CVS tags can not.
5068-
5069-
=cut
5070-
sub unescapeRefName
5071-
{
5072-
my($self,$refName)=@_;
5073-
5074-
# see escapeRefName() for description of escape mechanism.
5075-
50765055
$refName=~s/_-([spu]|[0-9a-f][0-9a-f])-/unescapeRefNameChar($1)/eg;
50775056

50785057
# allowed tag names

0 commit comments

Comments
 (0)