File manager - Edit - /var/www/payraty/helpdesk/public/storage/HEAD.tar
Back
usr/bin/HEAD 0000755 00000037512 00000000000 0006525 0 ustar 00 #!/usr/bin/perl # Simple user agent using LWP library. =head1 NAME lwp-request - Simple command line user agent =head1 SYNOPSIS B<lwp-request> [B<-afPuUsSedvhx>] [B<-m> I<method>] [B<-b> I<base URL>] [B<-t> I<timeout>] [B<-i> I<if-modified-since>] [B<-c> I<content-type>] [B<-C> I<credentials>] [B<-p> I<proxy-url>] [B<-o> I<format>] I<url>... =head1 DESCRIPTION This program can be used to send requests to WWW servers and your local file system. The request content for POST and PUT methods is read from stdin. The content of the response is printed on stdout. Error messages are printed on stderr. The program returns a status value indicating the number of URLs that failed. The options are: =over 4 =item -m <method> Set which method to use for the request. If this option is not used, then the method is derived from the name of the program. =item -f Force request through, even if the program believes that the method is illegal. The server might reject the request eventually. =item -b <uri> This URI will be used as the base URI for resolving all relative URIs given as argument. =item -t <timeout> Set the timeout value for the requests. The timeout is the amount of time that the program will wait for a response from the remote server before it fails. The default unit for the timeout value is seconds. You might append "m" or "h" to the timeout value to make it minutes or hours, respectively. The default timeout is '3m', i.e. 3 minutes. =item -i <time> Set the If-Modified-Since header in the request. If I<time> is the name of a file, use the modification timestamp for this file. If I<time> is not a file, it is parsed as a literal date. Take a look at L<HTTP::Date> for recognized formats. =item -c <content-type> Set the Content-Type for the request. This option is only allowed for requests that take a content, i.e. POST and PUT. You can force methods to take content by using the C<-f> option together with C<-c>. The default Content-Type for POST is C<application/x-www-form-urlencoded>. The default Content-type for the others is C<text/plain>. =item -p <proxy-url> Set the proxy to be used for the requests. The program also loads proxy settings from the environment. You can disable this with the C<-P> option. =item -P Don't load proxy settings from environment. =item -H <header> Send this HTTP header with each request. You can specify several, e.g.: lwp-request \ -H 'Referer: http://other.url/' \ -H 'Host: somehost' \ http://this.url/ =item -C <username>:<password> Provide credentials for documents that are protected by Basic Authentication. If the document is protected and you did not specify the username and password with this option, then you will be prompted to provide these values. =back The following options controls what is displayed by the program: =over 4 =item -u Print request method and absolute URL as requests are made. =item -U Print request headers in addition to request method and absolute URL. =item -s Print response status code. This option is always on for HEAD requests. =item -S Print response status chain. This shows redirect and authorization requests that are handled by the library. =item -e Print response headers. This option is always on for HEAD requests. =item -E Print response status chain with full response headers. =item -d Do B<not> print the content of the response. =item -o <format> Process HTML content in various ways before printing it. If the content type of the response is not HTML, then this option has no effect. The legal format values are; C<text>, C<ps>, C<links>, C<html> and C<dump>. If you specify the C<text> format then the HTML will be formatted as plain C<latin1> text. If you specify the C<ps> format then it will be formatted as Postscript. The C<links> format will output all links found in the HTML document. Relative links will be expanded to absolute ones. The C<html> format will reformat the HTML code and the C<dump> format will just dump the HTML syntax tree. Note that the C<HTML-Tree> distribution needs to be installed for this option to work. In addition the C<HTML-Format> distribution needs to be installed for C<-o text> or C<-o ps> to work. =item -v Print the version number of the program and quit. =item -h Print usage message and quit. =item -a Set text(ascii) mode for content input and output. If this option is not used, content input and output is done in binary mode. =back Because this program is implemented using the LWP library, it will only support the protocols that LWP supports. =head1 SEE ALSO L<lwp-mirror>, L<LWP> =head1 COPYRIGHT Copyright 1995-1999 Gisle Aas. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR Gisle Aas <gisle@aas.no> =cut use strict; use warnings; my $progname = $0; $progname =~ s,.*[\\/],,; # use basename only $progname =~ s/\.\w*$//; # strip extension, if any require LWP; use URI; use URI::Heuristic qw(uf_uri); use Encode; use Encode::Locale; use HTTP::Status qw(status_message); use HTTP::Date qw(time2str str2time); # This table lists the methods that are allowed. It should really be # a superset for all methods supported for every scheme that may be # supported by the library. Currently it might be a bit too HTTP # specific. You might use the -f option to force a method through. # # "" = No content in request, "C" = Needs content in request # my %allowed_methods = ( GET => "", HEAD => "", POST => "C", PUT => "C", DELETE => "", TRACE => "", OPTIONS => "", ); my %options; # We make our own specialization of LWP::UserAgent that asks for # user/password if document is protected. { package # hide from PAUSE, $VERSION updaters RequestAgent; use strict; use warnings; use parent qw(LWP::UserAgent); sub new { my $self = LWP::UserAgent::new(@_); $self->agent("lwp-request/$LWP::VERSION "); $self; } sub get_basic_credentials { my ($self, $realm, $uri) = @_; if ($options{'C'}) { return split(':', $options{'C'}, 2); } elsif (-t) { my $netloc = $uri->host_port; print STDERR "Enter username for $realm at $netloc: "; my $user = <STDIN>; chomp($user); return (undef, undef) unless length $user; print STDERR "Password: "; system("stty -echo"); my $password = <STDIN>; system("stty echo"); print STDERR "\n"; # because we disabled echo chomp($password); return ($user, $password); } else { return (undef, undef); } } } my $method = uc(lc($progname) eq "lwp-request" ? "GET" : $progname); # Parse command line use Getopt::Long; my @getopt_args = ( 'a', # content i/o in text(ascii) mode 'm=s', # set method 'f', # make request even if method is not in %allowed_methods 'b=s', # base url 't=s', # timeout 'i=s', # if-modified-since 'c=s', # content type for POST 'C=s', # credentials for basic authorization 'H=s@', # extra headers, form "Header: value string" # 'u', # display method and URL of request 'U', # display request headers also 's', # display status code 'S', # display whole chain of status codes 'e', # display response headers (default for HEAD) 'E', # display whole chain of headers 'd', # don't display content # 'h', # print usage 'v', # print version # 'p=s', # proxy URL 'P', # don't load proxy setting from environment # 'o=s', # output format ); Getopt::Long::config("noignorecase", "bundling"); unless (GetOptions(\%options, @getopt_args)) { usage(); } if ($options{'v'}) { require LWP; my $DISTNAME = 'libwww-perl-' . $LWP::VERSION; die <<"EOT"; This is lwp-request version $LWP::VERSION ($DISTNAME) Copyright 1995-1999, Gisle Aas. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. EOT } usage() if $options{'h'} || !@ARGV; # Create the user agent object my $ua = RequestAgent->new; # Load proxy settings from *_proxy environment variables. $ua->env_proxy unless $options{'P'}; $method = uc($options{'m'}) if defined $options{'m'}; if ($options{'f'}) { if ($options{'c'}) { $allowed_methods{$method} = "C"; # force content } else { $allowed_methods{$method} = ""; } } elsif (!defined $allowed_methods{$method}) { die "$progname: $method is not an allowed method\n"; } if ($options{'S'} || $options{'E'}) { $options{'U'} = 1 if $options{'E'}; $options{'E'} = 1 if $options{'e'}; $options{'S'} = 1; $options{'s'} = 1; $options{'u'} = 1; } if ($method eq "HEAD") { $options{'s'} = 1; $options{'e'} = 1 unless $options{'d'}; $options{'d'} = 1; } $options{'u'} = 1 if $options{'U'}; $options{'s'} = 1 if $options{'e'}; if (defined $options{'t'}) { $options{'t'} =~ /^(\d+)([smh])?/; die "$progname: Illegal timeout value!\n" unless defined $1; my $timeout = $1; if (defined $2) { $timeout *= 60 if $2 eq "m"; $timeout *= 3600 if $2 eq "h"; } $ua->timeout($timeout); } if (defined $options{'i'}) { my $time; if (-e $options{'i'}) { $time = (stat _)[9]; } else { $time = str2time($options{'i'}); die "$progname: Illegal time syntax for -i option\n" unless defined $time; } $options{'i'} = time2str($time); } my $content; my $user_ct; if ($allowed_methods{$method} eq "C") { # This request needs some content unless (defined $options{'c'}) { # set default content type $options{'c'} = ($method eq "POST") ? "application/x-www-form-urlencoded" : "text/plain"; } else { die "$progname: Illegal Content-type format\n" unless $options{'c'} =~ m,^[\w\-]+/[\w\-.+]+(?:\s*;.*)?$,; $user_ct++; } print STDERR "Please enter content ($options{'c'}) to be ${method}ed:\n" if -t; binmode STDIN unless -t or $options{'a'}; $content = join("", <STDIN>); } else { die "$progname: Can't set Content-type for $method requests\n" if defined $options{'c'}; } # Set up a request. We will use the same request object for all URLs. my $request = HTTP::Request->new($method); $request->header('If-Modified-Since', $options{'i'}) if defined $options{'i'}; for my $user_header (@{$options{'H'} || []}) { my ($header_name, $header_value) = split /\s*:\s*/, $user_header, 2; $header_name =~ s/^\s+//; if (lc($header_name) eq "user-agent") { $header_value .= $ua->agent if $header_value =~ /\s\z/; $ua->agent($header_value); } else { $request->push_header($header_name, $header_value); } } #$request->header('Accept', '*/*'); if ($options{'c'}) { # will always be set for request that wants content my $header = ($user_ct ? 'header' : 'init_header'); $request->$header('Content-Type', $options{'c'}); $request->header('Content-Length', length $content); # Not really needed $request->content($content); } my $errors = 0; sub show { my $r = shift; my $last = shift; print $method, " ", $r->request->uri->as_string, "\n" if $options{'u'}; print $r->request->headers_as_string, "\n" if $options{'U'}; print $r->status_line, "\n" if $options{'s'}; print $r->headers_as_string, "\n" if $options{'E'} or $last; } # Ok, now we perform the requests, one URL at a time while (my $url = shift) { # Create the URL object, but protect us against bad URLs eval { if ($url =~ /^\w+:/ || $options{'b'}) { # is there any scheme specification $url = URI->new(decode(locale => $url), decode(locale => $options{'b'})); $url = $url->abs(decode(locale => $options{'b'})) if $options{'b'}; } else { $url = uf_uri($url); } }; if ($@) { $@ =~ s/ at .* line \d+.*//; print STDERR $@; $errors++; next; } $ua->proxy($url->scheme, decode(locale => $options{'p'})) if $options{'p'}; # Send the request and get a response back from the server $request->uri($url); my $response = $ua->request($request); if ($options{'S'}) { for my $r ($response->redirects) { show($r); } } show($response, $options{'e'}); unless ($options{'d'}) { if ($options{'o'} && $response->content_type eq 'text/html') { eval { require HTML::Parse; }; if ($@) { if ($@ =~ m,^Can't locate HTML/Parse.pm in \@INC,) { die "The HTML-Tree distribution need to be installed for the -o option to be used.\n"; } else { die $@; } } my $html = HTML::Parse::parse_html($response->content); { $options{'o'} eq 'ps' && do { require HTML::FormatPS; my $f = HTML::FormatPS->new; print $f->format($html); last; }; $options{'o'} eq 'text' && do { require HTML::FormatText; my $f = HTML::FormatText->new; print $f->format($html); last; }; $options{'o'} eq 'html' && do { print $html->as_HTML; last; }; $options{'o'} eq 'links' && do { my $base = $response->base; $base = $options{'b'} if $options{'b'}; for (@{$html->extract_links}) { my ($link, $elem) = @$_; my $tag = uc $elem->tag; $link = URI->new($link)->abs($base)->as_string; print "$tag\t$link\n"; } last; }; $options{'o'} eq 'dump' && do { $html->dump; last; }; # It is bad to not notice this before now :-( die "Illegal -o option value ($options{'o'})\n"; } } else { binmode STDOUT unless $options{'a'}; print $response->content; } } $errors++ unless $response->is_success; } exit $errors; sub usage { die <<"EOT"; Usage: $progname [-options] <url>... -m <method> use method for the request (default is '$method') -f make request even if $progname believes method is illegal -b <base> Use the specified URL as base -t <timeout> Set timeout value -i <time> Set the If-Modified-Since header on the request -c <conttype> use this content-type for POST, PUT, CHECKIN -a Use text mode for content I/O -p <proxyurl> use this as a proxy -P don't load proxy settings from environment -H <header> send this HTTP header (you can specify several) -C <username>:<password> provide credentials for basic authentication -u Display method and URL before any response -U Display request headers (implies -u) -s Display response status code -S Display response status chain (implies -u) -e Display response headers (implies -s) -E Display whole chain of headers (implies -S and -U) -d Do not display content -o <format> Process HTML content in various ways -v Show program version -h Print this message EOT } var/www/payraty/hris/.git/HEAD 0000644 00000000025 00000000000 0012041 0 ustar 00 ref: refs/heads/main var/www/payraty/.git/HEAD 0000644 00000000027 00000000000 0011076 0 ustar 00 ref: refs/heads/master var/www/ratemypay/.git/HEAD 0000664 00000000030 00000000000 0011414 0 ustar 00 ref: refs/heads/staging var/www/payraty/hris/.git/logs/HEAD 0000644 00000012123 00000000000 0013007 0 ustar 00 0000000000000000000000000000000000000000 c91a9c5ecf7eb27450b67b77f45132fc1ae1fe68 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771271639 +0000 clone: from https://bitbucket.org/payratypayroll/hris.git c91a9c5ecf7eb27450b67b77f45132fc1ae1fe68 c91a9c5ecf7eb27450b67b77f45132fc1ae1fe68 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771272107 +0000 checkout: moving from main to main c91a9c5ecf7eb27450b67b77f45132fc1ae1fe68 b1e0c7726cc19f78dcbbe815237576d335b2ea97 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771275009 +0000 pull: Fast-forward b1e0c7726cc19f78dcbbe815237576d335b2ea97 b87652a9f0f86049bbc92b532b11d69c7f77fca7 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771275615 +0000 pull: Fast-forward b87652a9f0f86049bbc92b532b11d69c7f77fca7 8c60504829c45a7a3fc50c97d3fcddbcf593a66f root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771275738 +0000 pull: Fast-forward 8c60504829c45a7a3fc50c97d3fcddbcf593a66f 125ad9409cc2bd78ebabf22435101c50c036bcab root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771276219 +0000 pull: Fast-forward 125ad9409cc2bd78ebabf22435101c50c036bcab 3959150d52268c9f3b133a61ffb6b6e03c050bc1 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771284086 +0000 pull: Fast-forward 3959150d52268c9f3b133a61ffb6b6e03c050bc1 7eeef5c59e2c9ff8973baaad17400dcb356cbaed root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771308981 +0000 pull: Fast-forward 7eeef5c59e2c9ff8973baaad17400dcb356cbaed d009cbe78fe017c60683ec7535b940046fd2f4da root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771309527 +0000 pull: Fast-forward d009cbe78fe017c60683ec7535b940046fd2f4da a2dfc51819e551ca1604da38a594644e8d41c1c5 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771309877 +0000 pull: Fast-forward a2dfc51819e551ca1604da38a594644e8d41c1c5 e7a2bfca3a539b91cdf73940719eb94d9f395e3d root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771310006 +0000 pull: Fast-forward e7a2bfca3a539b91cdf73940719eb94d9f395e3d 573de67f42774d2909a8542e84751acb05711cb9 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771310159 +0000 pull: Fast-forward 573de67f42774d2909a8542e84751acb05711cb9 8a99d51e923c5bce785204094a13f358810315cf root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771310275 +0000 pull: Fast-forward 8a99d51e923c5bce785204094a13f358810315cf b25c55e56e9a28fd52c1ae5e1f1fa748057caccb root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771310411 +0000 pull: Fast-forward b25c55e56e9a28fd52c1ae5e1f1fa748057caccb b23bb1228b16750ef048a37a1aa751ae367ea05d root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771310689 +0000 pull: Fast-forward b23bb1228b16750ef048a37a1aa751ae367ea05d f573b9f41009ac81029fd9eb0c34d9ef01320378 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771310887 +0000 pull: Fast-forward f573b9f41009ac81029fd9eb0c34d9ef01320378 f5f7f4f0828d2c00d5e1c20fd00cfccad88d09d3 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771310930 +0000 pull: Fast-forward f5f7f4f0828d2c00d5e1c20fd00cfccad88d09d3 b3d3aa7d75e08d721d373e435bceda1a66087011 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771311338 +0000 pull: Fast-forward b3d3aa7d75e08d721d373e435bceda1a66087011 b22cfef63e12cac2ff82c4a5f72e4847dc87f4b8 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771311342 +0000 pull: Fast-forward b22cfef63e12cac2ff82c4a5f72e4847dc87f4b8 fa27e6a5c5ddf4f2cd3d37d5e2d53bf1a3b7f0dd root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771311599 +0000 pull: Fast-forward fa27e6a5c5ddf4f2cd3d37d5e2d53bf1a3b7f0dd afbca777641edd202e3f5237451f10499feb097e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771311757 +0000 pull: Fast-forward afbca777641edd202e3f5237451f10499feb097e 267a44b49f4fae097d9c1f3b51a88ae05a29b20d root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771311794 +0000 pull: Fast-forward 267a44b49f4fae097d9c1f3b51a88ae05a29b20d 713beaea51f9f4d0093e084274a0d1dede974465 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771311973 +0000 pull: Fast-forward 713beaea51f9f4d0093e084274a0d1dede974465 0f13d192aa2db263cd07c6f511f408dd65bf1a69 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771312050 +0000 pull: Fast-forward 0f13d192aa2db263cd07c6f511f408dd65bf1a69 46481af7fdc9caa4f549cc5c306c0d8fce314546 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771312119 +0000 pull: Fast-forward 46481af7fdc9caa4f549cc5c306c0d8fce314546 669022548c7b52d7fb0d39b64081d5455f14da0c root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771312653 +0000 pull: Fast-forward 669022548c7b52d7fb0d39b64081d5455f14da0c 2dd738898677bb6aac1591d179fc2d7af66466f2 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771312771 +0000 pull: Fast-forward 2dd738898677bb6aac1591d179fc2d7af66466f2 ac089a159bd7bffbc87e416ee11dbdddd1e2a1a3 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1771319997 +0000 pull: Fast-forward ac089a159bd7bffbc87e416ee11dbdddd1e2a1a3 21eeb5ddeb1a02f597978723856dbc9a55de5f0e Anthony Odu <antonyodu@gmail.com> 1777459515 +0000 pull: Fast-forward 21eeb5ddeb1a02f597978723856dbc9a55de5f0e aef7ea9ab4323861bae921bccab27778329d0c4e Anthony Odu <antonyodu@gmail.com> 1777459563 +0000 pull: Fast-forward var/www/ratemypay_dev/.git/logs/HEAD 0000664 00000047361 00000000000 0013240 0 ustar 00 0000000000000000000000000000000000000000 873840f726787fa84699d5b68a5636a8c9f07dca Anthony Odu <antonyodu@gmail.com> 1765603482 +0000 clone: from bitbucket.org:payratypayroll/ratemypay.git 873840f726787fa84699d5b68a5636a8c9f07dca 0693ae861d8071908fe55789c35b88c542ef53c4 Anthony Odu <antonyodu@gmail.com> 1765603548 +0000 checkout: moving from main to staging 0693ae861d8071908fe55789c35b88c542ef53c4 0693ae861d8071908fe55789c35b88c542ef53c4 Anthony Odu <antonyodu@gmail.com> 1765603579 +0000 checkout: moving from staging to staging 0693ae861d8071908fe55789c35b88c542ef53c4 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f Anthony Odu <antonyodu@gmail.com> 1765604713 +0000 pull: Fast-forward 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f Anthony Odu <antonyodu@gmail.com> 1765847328 +0000 reset: moving to HEAD 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f Anthony Odu <antonyodu@gmail.com> 1765847346 +0000 reset: moving to HEAD 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f c2080786933d2cd0cf98e1890aee94e87b338c3d Anthony Odu <antonyodu@gmail.com> 1765847373 +0000 pull: Fast-forward c2080786933d2cd0cf98e1890aee94e87b338c3d c2080786933d2cd0cf98e1890aee94e87b338c3d Anthony Odu <antonyodu@gmail.com> 1765869126 +0000 reset: moving to HEAD c2080786933d2cd0cf98e1890aee94e87b338c3d 87aaa7218b4416862e741355227aca5d7b06d112 Anthony Odu <antonyodu@gmail.com> 1765869134 +0000 pull: Fast-forward 87aaa7218b4416862e741355227aca5d7b06d112 be7aa64c64dc020d9f6ee432d35bb115f71861cf Anthony Odu <antonyodu@gmail.com> 1765869393 +0000 pull: Fast-forward be7aa64c64dc020d9f6ee432d35bb115f71861cf 637853028f18b16337fbd74e7ea6934612896ca4 Anthony Odu <antonyodu@gmail.com> 1768727566 +0000 pull: Fast-forward 637853028f18b16337fbd74e7ea6934612896ca4 59cb76bba0f9a811993e1c1247cbce10ac2834d0 Anthony Odu <antonyodu@gmail.com> 1768729946 +0000 pull origin staging: Fast-forward 59cb76bba0f9a811993e1c1247cbce10ac2834d0 c1df88720bef29ec677d7a71d67bc14bf0e3a3ee Anthony Odu <antonyodu@gmail.com> 1768760838 +0000 pull: Fast-forward c1df88720bef29ec677d7a71d67bc14bf0e3a3ee c22ca092556558bd37b8dfebee440714bf76e992 Anthony Odu <antonyodu@gmail.com> 1768761089 +0000 pull: Fast-forward c22ca092556558bd37b8dfebee440714bf76e992 c22ca092556558bd37b8dfebee440714bf76e992 Anthony Odu <antonyodu@gmail.com> 1768761434 +0000 reset: moving to HEAD c22ca092556558bd37b8dfebee440714bf76e992 08812ce1803a68f6cabaad85a6106c40c1fe85fd Anthony Odu <antonyodu@gmail.com> 1768761439 +0000 pull -f: Fast-forward 08812ce1803a68f6cabaad85a6106c40c1fe85fd 6b99a946495156a61751c7e9416c2e694e51588e Anthony Odu <antonyodu@gmail.com> 1769008832 +0000 pull: Fast-forward 6b99a946495156a61751c7e9416c2e694e51588e 165db0b8ffa9eecea05a046234e0a9482c5ffe80 Anthony Odu <antonyodu@gmail.com> 1769328416 +0000 pull origin staging: Fast-forward 165db0b8ffa9eecea05a046234e0a9482c5ffe80 33089936f93436a6e893ca699cbe65d061b03a2b Anthony Odu <antonyodu@gmail.com> 1769328463 +0000 commit: .. 33089936f93436a6e893ca699cbe65d061b03a2b 6a94d0f0410790838cb057f74a0065e2d48a1ba4 Anthony Odu <antonyodu@gmail.com> 1769329281 +0000 pull origin staging: Fast-forward 6a94d0f0410790838cb057f74a0065e2d48a1ba4 1161de881e743cb9737ef83d4a2ea08efb142dc8 Anthony Odu <antonyodu@gmail.com> 1769355157 +0000 pull origin staging: Fast-forward 1161de881e743cb9737ef83d4a2ea08efb142dc8 a474b170e44be3af696ec9c64a2915a6a275e397 Anthony Odu <antonyodu@gmail.com> 1770119531 +0000 pull origin staging: Fast-forward a474b170e44be3af696ec9c64a2915a6a275e397 1b14a0d29f9ebaa25242c45fe351aa3396d398c5 Anthony Odu <antonyodu@gmail.com> 1770120947 +0000 pull origin staging: Fast-forward 1b14a0d29f9ebaa25242c45fe351aa3396d398c5 1b14a0d29f9ebaa25242c45fe351aa3396d398c5 Anthony Odu <antonyodu@gmail.com> 1770121690 +0000 reset: moving to HEAD 1b14a0d29f9ebaa25242c45fe351aa3396d398c5 5d59a2740fa3f1111566e31544d2abdb18ae0351 Anthony Odu <antonyodu@gmail.com> 1770121695 +0000 pull: Fast-forward 5d59a2740fa3f1111566e31544d2abdb18ae0351 271221b630b8767227cee5d316adb0485e9e0468 Anthony Odu <antonyodu@gmail.com> 1770121978 +0000 pull origin staging: Fast-forward 271221b630b8767227cee5d316adb0485e9e0468 92a343baf2fa4a34b9393e90952c369411ea4232 Anthony Odu <antonyodu@gmail.com> 1770210566 +0000 pull origin staging: Fast-forward 92a343baf2fa4a34b9393e90952c369411ea4232 37d728cf4dde62a562b68a71165c602d98778c1c Anthony Odu <antonyodu@gmail.com> 1770227080 +0000 pull origin staging: Fast-forward 37d728cf4dde62a562b68a71165c602d98778c1c b451549c9e93e47bd33a0f589102f19e9df65a06 Anthony Odu <antonyodu@gmail.com> 1770228284 +0000 pull origin staging: Fast-forward b451549c9e93e47bd33a0f589102f19e9df65a06 2c75c1e99ea77b4227311dd657d0113d207143cf Anthony Odu <antonyodu@gmail.com> 1770229127 +0000 pull origin staging: Fast-forward 2c75c1e99ea77b4227311dd657d0113d207143cf 34aa7bc8bc810874c1841ce83de77cad6212a0aa Anthony Odu <antonyodu@gmail.com> 1770375054 +0000 pull origin staging: Fast-forward 34aa7bc8bc810874c1841ce83de77cad6212a0aa 40362e064c6b406f28393e60d42985436ebc09aa Anthony Odu <antonyodu@gmail.com> 1770723701 +0000 pull origin staging: Fast-forward 40362e064c6b406f28393e60d42985436ebc09aa fdc73853f92ca064484305cc9d43c4f970507522 Anthony Odu <antonyodu@gmail.com> 1770748955 +0000 pull origin staging: Fast-forward fdc73853f92ca064484305cc9d43c4f970507522 a50a86b4f188086ee44c557b2f23475968ccdb57 Anthony Odu <antonyodu@gmail.com> 1770750404 +0000 pull origin staging: Fast-forward a50a86b4f188086ee44c557b2f23475968ccdb57 38cca763de9d58bc18e56a58fb533de1f4e23f5b Anthony Odu <antonyodu@gmail.com> 1770750686 +0000 pull origin staging: Fast-forward 38cca763de9d58bc18e56a58fb533de1f4e23f5b 6721200e9a7ffbf77f72214f4d9c09987d01f14b Anthony Odu <antonyodu@gmail.com> 1770975027 +0000 pull origin staging: Fast-forward 6721200e9a7ffbf77f72214f4d9c09987d01f14b fc09361947345e6a6b7e21da8c9dd09da8995374 Anthony Odu <antonyodu@gmail.com> 1771568736 +0000 pull origin staging: Fast-forward fc09361947345e6a6b7e21da8c9dd09da8995374 feef6eca7c377c046cb0ea7c820be681a367cd6d Anthony Odu <antonyodu@gmail.com> 1771571483 +0000 pull origin staging: Fast-forward feef6eca7c377c046cb0ea7c820be681a367cd6d 7ba7c10dcf106fd63bbc7893a6f906705223cefa Anthony Odu <antonyodu@gmail.com> 1771571789 +0000 pull origin staging: Fast-forward 7ba7c10dcf106fd63bbc7893a6f906705223cefa 061e88f6fab4ef92bb99673b5a893f47e4b6742d Anthony Odu <antonyodu@gmail.com> 1771574060 +0000 pull origin staging: Fast-forward 061e88f6fab4ef92bb99673b5a893f47e4b6742d 91d2a62fa741c2e6ebec4925aa5f507f17699e33 Anthony Odu <antonyodu@gmail.com> 1771579510 +0000 pull origin staging: Fast-forward 91d2a62fa741c2e6ebec4925aa5f507f17699e33 82b96d4512282083049690a8fb8dcef23422656b Anthony Odu <antonyodu@gmail.com> 1771580053 +0000 pull origin staging: Fast-forward 82b96d4512282083049690a8fb8dcef23422656b c476854398d020bd6c1ba99e6f214a84f1a7dba0 Anthony Odu <antonyodu@gmail.com> 1771580169 +0000 pull: Fast-forward c476854398d020bd6c1ba99e6f214a84f1a7dba0 7e958918f1960ca5d56c74cc595c55114b46c686 Anthony Odu <antonyodu@gmail.com> 1771580685 +0000 pull: Fast-forward 7e958918f1960ca5d56c74cc595c55114b46c686 c094ab5703a3b25e23b8f0af7b7caf23638d3d84 Anthony Odu <antonyodu@gmail.com> 1771580915 +0000 pull: Fast-forward c094ab5703a3b25e23b8f0af7b7caf23638d3d84 c094ab5703a3b25e23b8f0af7b7caf23638d3d84 Anthony Odu <antonyodu@gmail.com> 1771581609 +0000 reset: moving to HEAD c094ab5703a3b25e23b8f0af7b7caf23638d3d84 ff3c5e2eb9df09f41ea94f02a0cf7160217baa99 Anthony Odu <antonyodu@gmail.com> 1771581614 +0000 pull: Fast-forward ff3c5e2eb9df09f41ea94f02a0cf7160217baa99 9d5a865e8f6d40f5c2beb0193dcd35575a56fb11 Anthony Odu <antonyodu@gmail.com> 1771582088 +0000 pull: Fast-forward 9d5a865e8f6d40f5c2beb0193dcd35575a56fb11 2e69405ae08e3b58ebb64cfca64841f443b3adb0 Anthony Odu <antonyodu@gmail.com> 1771582603 +0000 pull origin staging: Fast-forward 2e69405ae08e3b58ebb64cfca64841f443b3adb0 b030803d371368f8645277a9db1797c0e926d833 Anthony Odu <antonyodu@gmail.com> 1771582679 +0000 pull: Fast-forward b030803d371368f8645277a9db1797c0e926d833 b279e223bd42cb195c49bff5c0c844c3dad686dd Anthony Odu <antonyodu@gmail.com> 1771582795 +0000 pull: Fast-forward b279e223bd42cb195c49bff5c0c844c3dad686dd eef6b2d23e259f927a0c9bba0f4ddce07307593f Anthony Odu <antonyodu@gmail.com> 1771584065 +0000 pull: Fast-forward eef6b2d23e259f927a0c9bba0f4ddce07307593f 1e2722e60b35f478fc874395c83143a6a86f0d28 Anthony Odu <antonyodu@gmail.com> 1771584134 +0000 pull: Fast-forward 1e2722e60b35f478fc874395c83143a6a86f0d28 d8798d9d1eef999bf7812e5b11408b2952022423 Anthony Odu <antonyodu@gmail.com> 1771584528 +0000 pull: Fast-forward d8798d9d1eef999bf7812e5b11408b2952022423 8f205379a07fbb9957e2945372a66779cf53a223 Anthony Odu <antonyodu@gmail.com> 1771584734 +0000 pull origin staging: Fast-forward 8f205379a07fbb9957e2945372a66779cf53a223 4d892b9ad144058f1dd378e769dc21b10381c666 Anthony Odu <antonyodu@gmail.com> 1771584746 +0000 pull: Fast-forward 4d892b9ad144058f1dd378e769dc21b10381c666 d0850ec8b63447afd6413389e4df53ad1010e56a Anthony Odu <antonyodu@gmail.com> 1771585095 +0000 pull: Fast-forward d0850ec8b63447afd6413389e4df53ad1010e56a 85f1887961bca87220dc81ec027694230598730d Anthony Odu <antonyodu@gmail.com> 1771585210 +0000 pull: Fast-forward 85f1887961bca87220dc81ec027694230598730d 5d1e27e505196929e63c15bd082acc204e9a048b Anthony Odu <antonyodu@gmail.com> 1771585269 +0000 pull: Fast-forward 5d1e27e505196929e63c15bd082acc204e9a048b d7b4aa409d82384de2220e45c096e54e15fb497c Anthony Odu <antonyodu@gmail.com> 1771585538 +0000 pull: Fast-forward d7b4aa409d82384de2220e45c096e54e15fb497c 5a445629a1c0bfd38566b2e8d72fec435992581a Anthony Odu <antonyodu@gmail.com> 1771585593 +0000 pull: Fast-forward 5a445629a1c0bfd38566b2e8d72fec435992581a afa026bd6dfba7c9d3a8c30e69d4c6f15e138776 Anthony Odu <antonyodu@gmail.com> 1771586040 +0000 pull: Fast-forward afa026bd6dfba7c9d3a8c30e69d4c6f15e138776 d4082dc907afb9f7820cc056206bab1a3b06c202 Anthony Odu <antonyodu@gmail.com> 1771586076 +0000 pull: Fast-forward d4082dc907afb9f7820cc056206bab1a3b06c202 012df573b86cc1d4aa5fc609f5f3af4c27574f8d Anthony Odu <antonyodu@gmail.com> 1771587106 +0000 pull: Fast-forward 012df573b86cc1d4aa5fc609f5f3af4c27574f8d 993347a48e6b1f637514b0df576064223f3425b8 Anthony Odu <antonyodu@gmail.com> 1771587263 +0000 pull: Fast-forward 993347a48e6b1f637514b0df576064223f3425b8 b64efd87a282220a08e973a89834706da0f62127 Anthony Odu <antonyodu@gmail.com> 1771587445 +0000 pull: Fast-forward b64efd87a282220a08e973a89834706da0f62127 968da594a70bb6876d25b0a6920260ec74a19a80 Anthony Odu <antonyodu@gmail.com> 1771587573 +0000 pull: Fast-forward 968da594a70bb6876d25b0a6920260ec74a19a80 37588c04d713e8d78d7aa52cc758e4c5ff79eff1 Anthony Odu <antonyodu@gmail.com> 1771587662 +0000 pull: Fast-forward 37588c04d713e8d78d7aa52cc758e4c5ff79eff1 62741387ab1d196bd758b6f106ee8cfa49694325 Anthony Odu <antonyodu@gmail.com> 1771588401 +0000 pull: Fast-forward 62741387ab1d196bd758b6f106ee8cfa49694325 f401e41d7f5435268aff371628efc962f78002f3 Anthony Odu <antonyodu@gmail.com> 1771588475 +0000 pull: Fast-forward f401e41d7f5435268aff371628efc962f78002f3 705ccd8669f3772c90108d640dff541de5682eda Anthony Odu <antonyodu@gmail.com> 1771588545 +0000 pull: Fast-forward 705ccd8669f3772c90108d640dff541de5682eda 1509c7fffb792c3664adcc4baddd1aa50d272e10 Anthony Odu <antonyodu@gmail.com> 1771589983 +0000 pull: Fast-forward 1509c7fffb792c3664adcc4baddd1aa50d272e10 53922402ea3d3f3517c3706e9fb8f64fcc4a0384 Anthony Odu <antonyodu@gmail.com> 1771590019 +0000 pull: Fast-forward 53922402ea3d3f3517c3706e9fb8f64fcc4a0384 d1ade1a931d0fff6964a16600b518c6567b98069 Anthony Odu <antonyodu@gmail.com> 1771590298 +0000 pull origin staging: Fast-forward d1ade1a931d0fff6964a16600b518c6567b98069 177fd50b9b039ad159c699c73e82c676ca73028c Anthony Odu <antonyodu@gmail.com> 1771590500 +0000 pull: Fast-forward 177fd50b9b039ad159c699c73e82c676ca73028c 688e079580c75192776cc1202d2158cb687add64 Anthony Odu <antonyodu@gmail.com> 1771590649 +0000 pull: Fast-forward 688e079580c75192776cc1202d2158cb687add64 27a8a6ab9e340c82768733a925edcf733b6e53dd Anthony Odu <antonyodu@gmail.com> 1771591646 +0000 pull: Fast-forward 27a8a6ab9e340c82768733a925edcf733b6e53dd 0e75b12d892513a582b38b7447a52f3d88cd2407 Anthony Odu <antonyodu@gmail.com> 1771596420 +0000 pull origin staging: Fast-forward 0e75b12d892513a582b38b7447a52f3d88cd2407 bc4176a450e957c7c1f77b1fe52e58f38f295bdc Anthony Odu <antonyodu@gmail.com> 1771602505 +0000 pull: Fast-forward bc4176a450e957c7c1f77b1fe52e58f38f295bdc 4d888e660407c36da04a91b896c23e520ea60b18 Anthony Odu <antonyodu@gmail.com> 1771604318 +0000 pull: Fast-forward 4d888e660407c36da04a91b896c23e520ea60b18 fcf853b90067de06145030e5a5e77e83a609b087 Anthony Odu <antonyodu@gmail.com> 1771604956 +0000 pull: Fast-forward fcf853b90067de06145030e5a5e77e83a609b087 fb9b3ea204943b9e3bf7547ea9c589eea1093f5a Anthony Odu <antonyodu@gmail.com> 1771605151 +0000 pull: Fast-forward fb9b3ea204943b9e3bf7547ea9c589eea1093f5a 75f52b8a912d0cd143f8e9a3c95bd57fdfbefc73 Anthony Odu <antonyodu@gmail.com> 1771605156 +0000 pull: Fast-forward 75f52b8a912d0cd143f8e9a3c95bd57fdfbefc73 66bd8c8761bf893fc7b95d30b412c74903e98b59 Anthony Odu <antonyodu@gmail.com> 1771605371 +0000 pull: Fast-forward 66bd8c8761bf893fc7b95d30b412c74903e98b59 237a57f1023fa18c82df8af44dee06e41b655af7 Anthony Odu <antonyodu@gmail.com> 1771605649 +0000 pull: Fast-forward 237a57f1023fa18c82df8af44dee06e41b655af7 7efb3424724a8f66dbe814b3f4391b7cef19e303 Anthony Odu <antonyodu@gmail.com> 1771605897 +0000 pull: Fast-forward 7efb3424724a8f66dbe814b3f4391b7cef19e303 7ff4fea545ceaa7114fb920c60d2021de47e9bb9 Anthony Odu <antonyodu@gmail.com> 1771606549 +0000 pull: Fast-forward 7ff4fea545ceaa7114fb920c60d2021de47e9bb9 2c1e45987cb320e9cd620cd4d2bdb4d28403fa7d Anthony Odu <antonyodu@gmail.com> 1771606579 +0000 pull: Fast-forward 2c1e45987cb320e9cd620cd4d2bdb4d28403fa7d 6eab956403a9bd2b8d5d17e59ca1ba419dfd653a Anthony Odu <antonyodu@gmail.com> 1771606693 +0000 pull: Fast-forward 6eab956403a9bd2b8d5d17e59ca1ba419dfd653a ecbdb1fe4366bf6b10efea4fc5a64dfe7f3a90a0 Anthony Odu <antonyodu@gmail.com> 1771606765 +0000 pull: Fast-forward ecbdb1fe4366bf6b10efea4fc5a64dfe7f3a90a0 3e1ef1c89b2f34cbc5b93e35190164dfa26294be Anthony Odu <antonyodu@gmail.com> 1771607165 +0000 pull: Fast-forward 3e1ef1c89b2f34cbc5b93e35190164dfa26294be f7099b5ac6cfff27eb9b71fef4eb6dc4fd442190 Anthony Odu <antonyodu@gmail.com> 1771607337 +0000 pull: Fast-forward f7099b5ac6cfff27eb9b71fef4eb6dc4fd442190 51f19627ecf3ca00bf5f9cbca29c715aad06b6bc Anthony Odu <antonyodu@gmail.com> 1771607675 +0000 pull: Fast-forward 51f19627ecf3ca00bf5f9cbca29c715aad06b6bc c50607f799a5a2d3601a217cbb44e203c5384c96 Anthony Odu <antonyodu@gmail.com> 1771607955 +0000 pull: Fast-forward c50607f799a5a2d3601a217cbb44e203c5384c96 64e518c5afb2615d70cd53d13e53035865de1291 Anthony Odu <antonyodu@gmail.com> 1771608035 +0000 pull: Fast-forward 64e518c5afb2615d70cd53d13e53035865de1291 90fd37c832535eafa0dccc16475eadefc8e37bd2 Anthony Odu <antonyodu@gmail.com> 1771608378 +0000 pull: Fast-forward 90fd37c832535eafa0dccc16475eadefc8e37bd2 cadb661ed456129ad9235f50821a1ac5454f9f0f Anthony Odu <antonyodu@gmail.com> 1771608857 +0000 pull: Fast-forward cadb661ed456129ad9235f50821a1ac5454f9f0f 5c283db36a46f0dc7d398ecce23eb58fb4fd3462 Anthony Odu <antonyodu@gmail.com> 1771608862 +0000 pull: Fast-forward 5c283db36a46f0dc7d398ecce23eb58fb4fd3462 2f288c27244f1c1d7f9239d802df2df05fba9512 Anthony Odu <antonyodu@gmail.com> 1771609996 +0000 pull: Fast-forward 2f288c27244f1c1d7f9239d802df2df05fba9512 49f90fef4756537ee685a46e174577f6ef070fd4 Anthony Odu <antonyodu@gmail.com> 1771664035 +0000 pull: Fast-forward 49f90fef4756537ee685a46e174577f6ef070fd4 49f90fef4756537ee685a46e174577f6ef070fd4 Anthony Odu <antonyodu@gmail.com> 1771664095 +0000 reset: moving to HEAD 49f90fef4756537ee685a46e174577f6ef070fd4 8b186d5f139bf391d9d708a248096b9067a287db Anthony Odu <antonyodu@gmail.com> 1771664098 +0000 pull: Fast-forward 8b186d5f139bf391d9d708a248096b9067a287db e6116846779085ab57304a42ada7ff839861b1aa Anthony Odu <antonyodu@gmail.com> 1773649414 +0000 pull origin staging: Fast-forward e6116846779085ab57304a42ada7ff839861b1aa fe0aa20141aee3c41ab2ff9b2a3a05957d20dcc8 Anthony Odu <antonyodu@gmail.com> 1773661155 +0000 pull origin staging: Fast-forward fe0aa20141aee3c41ab2ff9b2a3a05957d20dcc8 873840f726787fa84699d5b68a5636a8c9f07dca Anthony Odu <antonyodu@gmail.com> 1773661157 +0000 checkout: moving from staging to main 873840f726787fa84699d5b68a5636a8c9f07dca fe0aa20141aee3c41ab2ff9b2a3a05957d20dcc8 Anthony Odu <antonyodu@gmail.com> 1773661178 +0000 checkout: moving from main to staging fe0aa20141aee3c41ab2ff9b2a3a05957d20dcc8 070f06224a8aeb77e84e2c5a8104370b0a805cb2 Anthony Odu <antonyodu@gmail.com> 1775024827 +0000 pull origin staging: Fast-forward 070f06224a8aeb77e84e2c5a8104370b0a805cb2 ac3af4618bf89564f912e075e79f83b5077f00d8 Anthony Odu <antonyodu@gmail.com> 1775921727 +0000 checkout: moving from staging to origin/dev ac3af4618bf89564f912e075e79f83b5077f00d8 adac259144a1cc0948fa10889ef31fb2a75e9fcb Anthony Odu <antonyodu@gmail.com> 1775922399 +0000 pull origin dev: Fast-forward adac259144a1cc0948fa10889ef31fb2a75e9fcb adac259144a1cc0948fa10889ef31fb2a75e9fcb Anthony Odu <antonyodu@gmail.com> 1775922403 +0000 checkout: moving from adac259144a1cc0948fa10889ef31fb2a75e9fcb to dev adac259144a1cc0948fa10889ef31fb2a75e9fcb adac259144a1cc0948fa10889ef31fb2a75e9fcb Anthony Odu <antonyodu@gmail.com> 1775922410 +0000 checkout: moving from dev to origin/dev adac259144a1cc0948fa10889ef31fb2a75e9fcb adac259144a1cc0948fa10889ef31fb2a75e9fcb Anthony Odu <antonyodu@gmail.com> 1775922516 +0000 checkout: moving from adac259144a1cc0948fa10889ef31fb2a75e9fcb to dev adac259144a1cc0948fa10889ef31fb2a75e9fcb 2c0ce8e5dbc749b0188c46fbbd19c17eec25be95 Anthony Odu <antonyodu@gmail.com> 1775923354 +0000 pull origin dev: Fast-forward 2c0ce8e5dbc749b0188c46fbbd19c17eec25be95 fe69a1d4488b4458791340dee4aec072af049098 Anthony Odu <antonyodu@gmail.com> 1775923540 +0000 pull origin dev: Fast-forward fe69a1d4488b4458791340dee4aec072af049098 6b002c0a710a9352e0d22a6e1d204a621269ed3e Anthony Odu <antonyodu@gmail.com> 1775923612 +0000 pull origin dev: Fast-forward 6b002c0a710a9352e0d22a6e1d204a621269ed3e 18d91e389ceb609f1a1fce1625c331da55370ffa Anthony Odu <antonyodu@gmail.com> 1775924238 +0000 pull origin dev: Fast-forward 18d91e389ceb609f1a1fce1625c331da55370ffa ff83d732f8dd6e434cb2e5b0db036fa5e346c406 Anthony Odu <antonyodu@gmail.com> 1775924377 +0000 pull origin dev: Fast-forward ff83d732f8dd6e434cb2e5b0db036fa5e346c406 472b21099ad6bcbf94e4c4d89c33dc049e9eedce Anthony Odu <antonyodu@gmail.com> 1775924973 +0000 pull origin dev: Fast-forward 472b21099ad6bcbf94e4c4d89c33dc049e9eedce 91e2668fc8471579fe1b8ce6cb892cbdb5bb1d16 Anthony Odu <antonyodu@gmail.com> 1775925855 +0000 pull origin dev: Fast-forward 91e2668fc8471579fe1b8ce6cb892cbdb5bb1d16 087d37d66769d1c7532048ca92c847af839021dc Anthony Odu <antonyodu@gmail.com> 1775926005 +0000 pull origin dev: Fast-forward 087d37d66769d1c7532048ca92c847af839021dc 8c56354a8a5d08429a8378cea5a69b3018c2b47e Anthony Odu <antonyodu@gmail.com> 1775926398 +0000 pull origin dev: Fast-forward 8c56354a8a5d08429a8378cea5a69b3018c2b47e 2e6e31881bc1693dab52a9cfd3d031fe0ba36fbc Anthony Odu <antonyodu@gmail.com> 1775989889 +0000 pull origin dev: Fast-forward 2e6e31881bc1693dab52a9cfd3d031fe0ba36fbc 7f947194cb46f12dcf2b393ce650bc64d57b94e0 Anthony Odu <antonyodu@gmail.com> 1775990706 +0000 pull origin dev: Fast-forward 7f947194cb46f12dcf2b393ce650bc64d57b94e0 1bc11057528c6ee8fcf45ef4a178d78ced0d2d1a Anthony Odu <antonyodu@gmail.com> 1775994943 +0000 pull origin dev: Fast-forward 1bc11057528c6ee8fcf45ef4a178d78ced0d2d1a 3eb20f0af0c61ca1a4c538b85fba4282cf83c22c Anthony Odu <antonyodu@gmail.com> 1776058468 +0000 pull origin dev: Fast-forward 3eb20f0af0c61ca1a4c538b85fba4282cf83c22c 68169ac08bd2fba2b3ebb83ee521b48da037ddf8 Anthony Odu <antonyodu@gmail.com> 1776411285 +0000 pull origin dev: Fast-forward 68169ac08bd2fba2b3ebb83ee521b48da037ddf8 173b4b41858e2047ddca31d4df6961c36227202c Anthony Odu <antonyodu@gmail.com> 1776417397 +0000 pull origin dev: Fast-forward var/www/ratemypay/.git/logs/HEAD 0000664 00000041433 00000000000 0012374 0 ustar 00 0000000000000000000000000000000000000000 873840f726787fa84699d5b68a5636a8c9f07dca Anthony Odu <antonyodu@gmail.com> 1765603482 +0000 clone: from bitbucket.org:payratypayroll/ratemypay.git 873840f726787fa84699d5b68a5636a8c9f07dca 0693ae861d8071908fe55789c35b88c542ef53c4 Anthony Odu <antonyodu@gmail.com> 1765603548 +0000 checkout: moving from main to staging 0693ae861d8071908fe55789c35b88c542ef53c4 0693ae861d8071908fe55789c35b88c542ef53c4 Anthony Odu <antonyodu@gmail.com> 1765603579 +0000 checkout: moving from staging to staging 0693ae861d8071908fe55789c35b88c542ef53c4 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f Anthony Odu <antonyodu@gmail.com> 1765604713 +0000 pull: Fast-forward 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f Anthony Odu <antonyodu@gmail.com> 1765847328 +0000 reset: moving to HEAD 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f Anthony Odu <antonyodu@gmail.com> 1765847346 +0000 reset: moving to HEAD 8f306d3a1d7a8f6c073069ca3f05734d9157ce2f c2080786933d2cd0cf98e1890aee94e87b338c3d Anthony Odu <antonyodu@gmail.com> 1765847373 +0000 pull: Fast-forward c2080786933d2cd0cf98e1890aee94e87b338c3d c2080786933d2cd0cf98e1890aee94e87b338c3d Anthony Odu <antonyodu@gmail.com> 1765869126 +0000 reset: moving to HEAD c2080786933d2cd0cf98e1890aee94e87b338c3d 87aaa7218b4416862e741355227aca5d7b06d112 Anthony Odu <antonyodu@gmail.com> 1765869134 +0000 pull: Fast-forward 87aaa7218b4416862e741355227aca5d7b06d112 be7aa64c64dc020d9f6ee432d35bb115f71861cf Anthony Odu <antonyodu@gmail.com> 1765869393 +0000 pull: Fast-forward be7aa64c64dc020d9f6ee432d35bb115f71861cf 637853028f18b16337fbd74e7ea6934612896ca4 Anthony Odu <antonyodu@gmail.com> 1768727566 +0000 pull: Fast-forward 637853028f18b16337fbd74e7ea6934612896ca4 59cb76bba0f9a811993e1c1247cbce10ac2834d0 Anthony Odu <antonyodu@gmail.com> 1768729946 +0000 pull origin staging: Fast-forward 59cb76bba0f9a811993e1c1247cbce10ac2834d0 c1df88720bef29ec677d7a71d67bc14bf0e3a3ee Anthony Odu <antonyodu@gmail.com> 1768760838 +0000 pull: Fast-forward c1df88720bef29ec677d7a71d67bc14bf0e3a3ee c22ca092556558bd37b8dfebee440714bf76e992 Anthony Odu <antonyodu@gmail.com> 1768761089 +0000 pull: Fast-forward c22ca092556558bd37b8dfebee440714bf76e992 c22ca092556558bd37b8dfebee440714bf76e992 Anthony Odu <antonyodu@gmail.com> 1768761434 +0000 reset: moving to HEAD c22ca092556558bd37b8dfebee440714bf76e992 08812ce1803a68f6cabaad85a6106c40c1fe85fd Anthony Odu <antonyodu@gmail.com> 1768761439 +0000 pull -f: Fast-forward 08812ce1803a68f6cabaad85a6106c40c1fe85fd 6b99a946495156a61751c7e9416c2e694e51588e Anthony Odu <antonyodu@gmail.com> 1769008832 +0000 pull: Fast-forward 6b99a946495156a61751c7e9416c2e694e51588e 165db0b8ffa9eecea05a046234e0a9482c5ffe80 Anthony Odu <antonyodu@gmail.com> 1769328416 +0000 pull origin staging: Fast-forward 165db0b8ffa9eecea05a046234e0a9482c5ffe80 33089936f93436a6e893ca699cbe65d061b03a2b Anthony Odu <antonyodu@gmail.com> 1769328463 +0000 commit: .. 33089936f93436a6e893ca699cbe65d061b03a2b 6a94d0f0410790838cb057f74a0065e2d48a1ba4 Anthony Odu <antonyodu@gmail.com> 1769329281 +0000 pull origin staging: Fast-forward 6a94d0f0410790838cb057f74a0065e2d48a1ba4 1161de881e743cb9737ef83d4a2ea08efb142dc8 Anthony Odu <antonyodu@gmail.com> 1769355157 +0000 pull origin staging: Fast-forward 1161de881e743cb9737ef83d4a2ea08efb142dc8 a474b170e44be3af696ec9c64a2915a6a275e397 Anthony Odu <antonyodu@gmail.com> 1770119531 +0000 pull origin staging: Fast-forward a474b170e44be3af696ec9c64a2915a6a275e397 1b14a0d29f9ebaa25242c45fe351aa3396d398c5 Anthony Odu <antonyodu@gmail.com> 1770120947 +0000 pull origin staging: Fast-forward 1b14a0d29f9ebaa25242c45fe351aa3396d398c5 1b14a0d29f9ebaa25242c45fe351aa3396d398c5 Anthony Odu <antonyodu@gmail.com> 1770121690 +0000 reset: moving to HEAD 1b14a0d29f9ebaa25242c45fe351aa3396d398c5 5d59a2740fa3f1111566e31544d2abdb18ae0351 Anthony Odu <antonyodu@gmail.com> 1770121695 +0000 pull: Fast-forward 5d59a2740fa3f1111566e31544d2abdb18ae0351 271221b630b8767227cee5d316adb0485e9e0468 Anthony Odu <antonyodu@gmail.com> 1770121978 +0000 pull origin staging: Fast-forward 271221b630b8767227cee5d316adb0485e9e0468 92a343baf2fa4a34b9393e90952c369411ea4232 Anthony Odu <antonyodu@gmail.com> 1770210566 +0000 pull origin staging: Fast-forward 92a343baf2fa4a34b9393e90952c369411ea4232 37d728cf4dde62a562b68a71165c602d98778c1c Anthony Odu <antonyodu@gmail.com> 1770227080 +0000 pull origin staging: Fast-forward 37d728cf4dde62a562b68a71165c602d98778c1c b451549c9e93e47bd33a0f589102f19e9df65a06 Anthony Odu <antonyodu@gmail.com> 1770228284 +0000 pull origin staging: Fast-forward b451549c9e93e47bd33a0f589102f19e9df65a06 2c75c1e99ea77b4227311dd657d0113d207143cf Anthony Odu <antonyodu@gmail.com> 1770229127 +0000 pull origin staging: Fast-forward 2c75c1e99ea77b4227311dd657d0113d207143cf 34aa7bc8bc810874c1841ce83de77cad6212a0aa Anthony Odu <antonyodu@gmail.com> 1770375054 +0000 pull origin staging: Fast-forward 34aa7bc8bc810874c1841ce83de77cad6212a0aa 40362e064c6b406f28393e60d42985436ebc09aa Anthony Odu <antonyodu@gmail.com> 1770723701 +0000 pull origin staging: Fast-forward 40362e064c6b406f28393e60d42985436ebc09aa fdc73853f92ca064484305cc9d43c4f970507522 Anthony Odu <antonyodu@gmail.com> 1770748955 +0000 pull origin staging: Fast-forward fdc73853f92ca064484305cc9d43c4f970507522 a50a86b4f188086ee44c557b2f23475968ccdb57 Anthony Odu <antonyodu@gmail.com> 1770750404 +0000 pull origin staging: Fast-forward a50a86b4f188086ee44c557b2f23475968ccdb57 38cca763de9d58bc18e56a58fb533de1f4e23f5b Anthony Odu <antonyodu@gmail.com> 1770750686 +0000 pull origin staging: Fast-forward 38cca763de9d58bc18e56a58fb533de1f4e23f5b 6721200e9a7ffbf77f72214f4d9c09987d01f14b Anthony Odu <antonyodu@gmail.com> 1770975027 +0000 pull origin staging: Fast-forward 6721200e9a7ffbf77f72214f4d9c09987d01f14b fc09361947345e6a6b7e21da8c9dd09da8995374 Anthony Odu <antonyodu@gmail.com> 1771568736 +0000 pull origin staging: Fast-forward fc09361947345e6a6b7e21da8c9dd09da8995374 feef6eca7c377c046cb0ea7c820be681a367cd6d Anthony Odu <antonyodu@gmail.com> 1771571483 +0000 pull origin staging: Fast-forward feef6eca7c377c046cb0ea7c820be681a367cd6d 7ba7c10dcf106fd63bbc7893a6f906705223cefa Anthony Odu <antonyodu@gmail.com> 1771571789 +0000 pull origin staging: Fast-forward 7ba7c10dcf106fd63bbc7893a6f906705223cefa 061e88f6fab4ef92bb99673b5a893f47e4b6742d Anthony Odu <antonyodu@gmail.com> 1771574060 +0000 pull origin staging: Fast-forward 061e88f6fab4ef92bb99673b5a893f47e4b6742d 91d2a62fa741c2e6ebec4925aa5f507f17699e33 Anthony Odu <antonyodu@gmail.com> 1771579510 +0000 pull origin staging: Fast-forward 91d2a62fa741c2e6ebec4925aa5f507f17699e33 82b96d4512282083049690a8fb8dcef23422656b Anthony Odu <antonyodu@gmail.com> 1771580053 +0000 pull origin staging: Fast-forward 82b96d4512282083049690a8fb8dcef23422656b c476854398d020bd6c1ba99e6f214a84f1a7dba0 Anthony Odu <antonyodu@gmail.com> 1771580169 +0000 pull: Fast-forward c476854398d020bd6c1ba99e6f214a84f1a7dba0 7e958918f1960ca5d56c74cc595c55114b46c686 Anthony Odu <antonyodu@gmail.com> 1771580685 +0000 pull: Fast-forward 7e958918f1960ca5d56c74cc595c55114b46c686 c094ab5703a3b25e23b8f0af7b7caf23638d3d84 Anthony Odu <antonyodu@gmail.com> 1771580915 +0000 pull: Fast-forward c094ab5703a3b25e23b8f0af7b7caf23638d3d84 c094ab5703a3b25e23b8f0af7b7caf23638d3d84 Anthony Odu <antonyodu@gmail.com> 1771581609 +0000 reset: moving to HEAD c094ab5703a3b25e23b8f0af7b7caf23638d3d84 ff3c5e2eb9df09f41ea94f02a0cf7160217baa99 Anthony Odu <antonyodu@gmail.com> 1771581614 +0000 pull: Fast-forward ff3c5e2eb9df09f41ea94f02a0cf7160217baa99 9d5a865e8f6d40f5c2beb0193dcd35575a56fb11 Anthony Odu <antonyodu@gmail.com> 1771582088 +0000 pull: Fast-forward 9d5a865e8f6d40f5c2beb0193dcd35575a56fb11 2e69405ae08e3b58ebb64cfca64841f443b3adb0 Anthony Odu <antonyodu@gmail.com> 1771582603 +0000 pull origin staging: Fast-forward 2e69405ae08e3b58ebb64cfca64841f443b3adb0 b030803d371368f8645277a9db1797c0e926d833 Anthony Odu <antonyodu@gmail.com> 1771582679 +0000 pull: Fast-forward b030803d371368f8645277a9db1797c0e926d833 b279e223bd42cb195c49bff5c0c844c3dad686dd Anthony Odu <antonyodu@gmail.com> 1771582795 +0000 pull: Fast-forward b279e223bd42cb195c49bff5c0c844c3dad686dd eef6b2d23e259f927a0c9bba0f4ddce07307593f Anthony Odu <antonyodu@gmail.com> 1771584065 +0000 pull: Fast-forward eef6b2d23e259f927a0c9bba0f4ddce07307593f 1e2722e60b35f478fc874395c83143a6a86f0d28 Anthony Odu <antonyodu@gmail.com> 1771584134 +0000 pull: Fast-forward 1e2722e60b35f478fc874395c83143a6a86f0d28 d8798d9d1eef999bf7812e5b11408b2952022423 Anthony Odu <antonyodu@gmail.com> 1771584528 +0000 pull: Fast-forward d8798d9d1eef999bf7812e5b11408b2952022423 8f205379a07fbb9957e2945372a66779cf53a223 Anthony Odu <antonyodu@gmail.com> 1771584734 +0000 pull origin staging: Fast-forward 8f205379a07fbb9957e2945372a66779cf53a223 4d892b9ad144058f1dd378e769dc21b10381c666 Anthony Odu <antonyodu@gmail.com> 1771584746 +0000 pull: Fast-forward 4d892b9ad144058f1dd378e769dc21b10381c666 d0850ec8b63447afd6413389e4df53ad1010e56a Anthony Odu <antonyodu@gmail.com> 1771585095 +0000 pull: Fast-forward d0850ec8b63447afd6413389e4df53ad1010e56a 85f1887961bca87220dc81ec027694230598730d Anthony Odu <antonyodu@gmail.com> 1771585210 +0000 pull: Fast-forward 85f1887961bca87220dc81ec027694230598730d 5d1e27e505196929e63c15bd082acc204e9a048b Anthony Odu <antonyodu@gmail.com> 1771585269 +0000 pull: Fast-forward 5d1e27e505196929e63c15bd082acc204e9a048b d7b4aa409d82384de2220e45c096e54e15fb497c Anthony Odu <antonyodu@gmail.com> 1771585538 +0000 pull: Fast-forward d7b4aa409d82384de2220e45c096e54e15fb497c 5a445629a1c0bfd38566b2e8d72fec435992581a Anthony Odu <antonyodu@gmail.com> 1771585593 +0000 pull: Fast-forward 5a445629a1c0bfd38566b2e8d72fec435992581a afa026bd6dfba7c9d3a8c30e69d4c6f15e138776 Anthony Odu <antonyodu@gmail.com> 1771586040 +0000 pull: Fast-forward afa026bd6dfba7c9d3a8c30e69d4c6f15e138776 d4082dc907afb9f7820cc056206bab1a3b06c202 Anthony Odu <antonyodu@gmail.com> 1771586076 +0000 pull: Fast-forward d4082dc907afb9f7820cc056206bab1a3b06c202 012df573b86cc1d4aa5fc609f5f3af4c27574f8d Anthony Odu <antonyodu@gmail.com> 1771587106 +0000 pull: Fast-forward 012df573b86cc1d4aa5fc609f5f3af4c27574f8d 993347a48e6b1f637514b0df576064223f3425b8 Anthony Odu <antonyodu@gmail.com> 1771587263 +0000 pull: Fast-forward 993347a48e6b1f637514b0df576064223f3425b8 b64efd87a282220a08e973a89834706da0f62127 Anthony Odu <antonyodu@gmail.com> 1771587445 +0000 pull: Fast-forward b64efd87a282220a08e973a89834706da0f62127 968da594a70bb6876d25b0a6920260ec74a19a80 Anthony Odu <antonyodu@gmail.com> 1771587573 +0000 pull: Fast-forward 968da594a70bb6876d25b0a6920260ec74a19a80 37588c04d713e8d78d7aa52cc758e4c5ff79eff1 Anthony Odu <antonyodu@gmail.com> 1771587662 +0000 pull: Fast-forward 37588c04d713e8d78d7aa52cc758e4c5ff79eff1 62741387ab1d196bd758b6f106ee8cfa49694325 Anthony Odu <antonyodu@gmail.com> 1771588401 +0000 pull: Fast-forward 62741387ab1d196bd758b6f106ee8cfa49694325 f401e41d7f5435268aff371628efc962f78002f3 Anthony Odu <antonyodu@gmail.com> 1771588475 +0000 pull: Fast-forward f401e41d7f5435268aff371628efc962f78002f3 705ccd8669f3772c90108d640dff541de5682eda Anthony Odu <antonyodu@gmail.com> 1771588545 +0000 pull: Fast-forward 705ccd8669f3772c90108d640dff541de5682eda 1509c7fffb792c3664adcc4baddd1aa50d272e10 Anthony Odu <antonyodu@gmail.com> 1771589983 +0000 pull: Fast-forward 1509c7fffb792c3664adcc4baddd1aa50d272e10 53922402ea3d3f3517c3706e9fb8f64fcc4a0384 Anthony Odu <antonyodu@gmail.com> 1771590019 +0000 pull: Fast-forward 53922402ea3d3f3517c3706e9fb8f64fcc4a0384 d1ade1a931d0fff6964a16600b518c6567b98069 Anthony Odu <antonyodu@gmail.com> 1771590298 +0000 pull origin staging: Fast-forward d1ade1a931d0fff6964a16600b518c6567b98069 177fd50b9b039ad159c699c73e82c676ca73028c Anthony Odu <antonyodu@gmail.com> 1771590500 +0000 pull: Fast-forward 177fd50b9b039ad159c699c73e82c676ca73028c 688e079580c75192776cc1202d2158cb687add64 Anthony Odu <antonyodu@gmail.com> 1771590649 +0000 pull: Fast-forward 688e079580c75192776cc1202d2158cb687add64 27a8a6ab9e340c82768733a925edcf733b6e53dd Anthony Odu <antonyodu@gmail.com> 1771591646 +0000 pull: Fast-forward 27a8a6ab9e340c82768733a925edcf733b6e53dd 0e75b12d892513a582b38b7447a52f3d88cd2407 Anthony Odu <antonyodu@gmail.com> 1771596420 +0000 pull origin staging: Fast-forward 0e75b12d892513a582b38b7447a52f3d88cd2407 bc4176a450e957c7c1f77b1fe52e58f38f295bdc Anthony Odu <antonyodu@gmail.com> 1771602505 +0000 pull: Fast-forward bc4176a450e957c7c1f77b1fe52e58f38f295bdc 4d888e660407c36da04a91b896c23e520ea60b18 Anthony Odu <antonyodu@gmail.com> 1771604318 +0000 pull: Fast-forward 4d888e660407c36da04a91b896c23e520ea60b18 fcf853b90067de06145030e5a5e77e83a609b087 Anthony Odu <antonyodu@gmail.com> 1771604956 +0000 pull: Fast-forward fcf853b90067de06145030e5a5e77e83a609b087 fb9b3ea204943b9e3bf7547ea9c589eea1093f5a Anthony Odu <antonyodu@gmail.com> 1771605151 +0000 pull: Fast-forward fb9b3ea204943b9e3bf7547ea9c589eea1093f5a 75f52b8a912d0cd143f8e9a3c95bd57fdfbefc73 Anthony Odu <antonyodu@gmail.com> 1771605156 +0000 pull: Fast-forward 75f52b8a912d0cd143f8e9a3c95bd57fdfbefc73 66bd8c8761bf893fc7b95d30b412c74903e98b59 Anthony Odu <antonyodu@gmail.com> 1771605371 +0000 pull: Fast-forward 66bd8c8761bf893fc7b95d30b412c74903e98b59 237a57f1023fa18c82df8af44dee06e41b655af7 Anthony Odu <antonyodu@gmail.com> 1771605649 +0000 pull: Fast-forward 237a57f1023fa18c82df8af44dee06e41b655af7 7efb3424724a8f66dbe814b3f4391b7cef19e303 Anthony Odu <antonyodu@gmail.com> 1771605897 +0000 pull: Fast-forward 7efb3424724a8f66dbe814b3f4391b7cef19e303 7ff4fea545ceaa7114fb920c60d2021de47e9bb9 Anthony Odu <antonyodu@gmail.com> 1771606549 +0000 pull: Fast-forward 7ff4fea545ceaa7114fb920c60d2021de47e9bb9 2c1e45987cb320e9cd620cd4d2bdb4d28403fa7d Anthony Odu <antonyodu@gmail.com> 1771606579 +0000 pull: Fast-forward 2c1e45987cb320e9cd620cd4d2bdb4d28403fa7d 6eab956403a9bd2b8d5d17e59ca1ba419dfd653a Anthony Odu <antonyodu@gmail.com> 1771606693 +0000 pull: Fast-forward 6eab956403a9bd2b8d5d17e59ca1ba419dfd653a ecbdb1fe4366bf6b10efea4fc5a64dfe7f3a90a0 Anthony Odu <antonyodu@gmail.com> 1771606765 +0000 pull: Fast-forward ecbdb1fe4366bf6b10efea4fc5a64dfe7f3a90a0 3e1ef1c89b2f34cbc5b93e35190164dfa26294be Anthony Odu <antonyodu@gmail.com> 1771607165 +0000 pull: Fast-forward 3e1ef1c89b2f34cbc5b93e35190164dfa26294be f7099b5ac6cfff27eb9b71fef4eb6dc4fd442190 Anthony Odu <antonyodu@gmail.com> 1771607337 +0000 pull: Fast-forward f7099b5ac6cfff27eb9b71fef4eb6dc4fd442190 51f19627ecf3ca00bf5f9cbca29c715aad06b6bc Anthony Odu <antonyodu@gmail.com> 1771607675 +0000 pull: Fast-forward 51f19627ecf3ca00bf5f9cbca29c715aad06b6bc c50607f799a5a2d3601a217cbb44e203c5384c96 Anthony Odu <antonyodu@gmail.com> 1771607955 +0000 pull: Fast-forward c50607f799a5a2d3601a217cbb44e203c5384c96 64e518c5afb2615d70cd53d13e53035865de1291 Anthony Odu <antonyodu@gmail.com> 1771608035 +0000 pull: Fast-forward 64e518c5afb2615d70cd53d13e53035865de1291 90fd37c832535eafa0dccc16475eadefc8e37bd2 Anthony Odu <antonyodu@gmail.com> 1771608378 +0000 pull: Fast-forward 90fd37c832535eafa0dccc16475eadefc8e37bd2 cadb661ed456129ad9235f50821a1ac5454f9f0f Anthony Odu <antonyodu@gmail.com> 1771608857 +0000 pull: Fast-forward cadb661ed456129ad9235f50821a1ac5454f9f0f 5c283db36a46f0dc7d398ecce23eb58fb4fd3462 Anthony Odu <antonyodu@gmail.com> 1771608862 +0000 pull: Fast-forward 5c283db36a46f0dc7d398ecce23eb58fb4fd3462 2f288c27244f1c1d7f9239d802df2df05fba9512 Anthony Odu <antonyodu@gmail.com> 1771609996 +0000 pull: Fast-forward 2f288c27244f1c1d7f9239d802df2df05fba9512 49f90fef4756537ee685a46e174577f6ef070fd4 Anthony Odu <antonyodu@gmail.com> 1771664035 +0000 pull: Fast-forward 49f90fef4756537ee685a46e174577f6ef070fd4 49f90fef4756537ee685a46e174577f6ef070fd4 Anthony Odu <antonyodu@gmail.com> 1771664095 +0000 reset: moving to HEAD 49f90fef4756537ee685a46e174577f6ef070fd4 8b186d5f139bf391d9d708a248096b9067a287db Anthony Odu <antonyodu@gmail.com> 1771664098 +0000 pull: Fast-forward 8b186d5f139bf391d9d708a248096b9067a287db e6116846779085ab57304a42ada7ff839861b1aa Anthony Odu <antonyodu@gmail.com> 1773649414 +0000 pull origin staging: Fast-forward e6116846779085ab57304a42ada7ff839861b1aa fe0aa20141aee3c41ab2ff9b2a3a05957d20dcc8 Anthony Odu <antonyodu@gmail.com> 1773661155 +0000 pull origin staging: Fast-forward fe0aa20141aee3c41ab2ff9b2a3a05957d20dcc8 873840f726787fa84699d5b68a5636a8c9f07dca Anthony Odu <antonyodu@gmail.com> 1773661157 +0000 checkout: moving from staging to main 873840f726787fa84699d5b68a5636a8c9f07dca fe0aa20141aee3c41ab2ff9b2a3a05957d20dcc8 Anthony Odu <antonyodu@gmail.com> 1773661178 +0000 checkout: moving from main to staging fe0aa20141aee3c41ab2ff9b2a3a05957d20dcc8 070f06224a8aeb77e84e2c5a8104370b0a805cb2 Anthony Odu <antonyodu@gmail.com> 1775024827 +0000 pull origin staging: Fast-forward 070f06224a8aeb77e84e2c5a8104370b0a805cb2 5728724ea36b83cebe58b66b7cb5b6e2f1e0604a Anthony Odu <antonyodu@gmail.com> 1775922274 +0000 pull origin staging: Fast-forward 5728724ea36b83cebe58b66b7cb5b6e2f1e0604a c2885016c7df7b4e191eafe4f17ae555d076d5b5 Anthony Odu <antonyodu@gmail.com> 1775922395 +0000 pull origin staging: Fast-forward var/www/payraty/hris-standalone/.git/logs/HEAD 0000644 00000021036 00000000000 0015140 0 ustar 00 0000000000000000000000000000000000000000 91b5b82d48bd0173ebf54e4f0840e5ee9b53a798 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1745426229 +0000 clone: from https://bitbucket.org/payratypayroll/hris-standalone.git 91b5b82d48bd0173ebf54e4f0840e5ee9b53a798 f94bc5bddea7af9135bd6057b5ddd3ce160bac91 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1745428189 +0000 pull: Fast-forward f94bc5bddea7af9135bd6057b5ddd3ce160bac91 cbcf6f9b361f4d1352febfecc1ec99b2fbd45932 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1747125218 +0000 commit: . cbcf6f9b361f4d1352febfecc1ec99b2fbd45932 2086f91701dcf02cd74514f41ebc06207fc9a770 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1747125365 +0000 pull: Merge made by the 'ort' strategy. 2086f91701dcf02cd74514f41ebc06207fc9a770 a61d223f0e001573f2bb6e2335461e8b022390c2 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1747125468 +0000 pull: Fast-forward a61d223f0e001573f2bb6e2335461e8b022390c2 1756fcc73341d1977626e5b77b9ef4005b8b9454 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1747253844 +0000 pull: Fast-forward 1756fcc73341d1977626e5b77b9ef4005b8b9454 121ecc73452a29aa81395f0d493900ece04ee69d root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1747254011 +0000 pull: Fast-forward 121ecc73452a29aa81395f0d493900ece04ee69d cd7b15608618aa9af6d550cc8b83f46d23983e48 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1747254293 +0000 pull: Fast-forward cd7b15608618aa9af6d550cc8b83f46d23983e48 f32bcb07724634c5e66c593849c78f9230cc3c01 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1748349666 +0000 pull: Fast-forward f32bcb07724634c5e66c593849c78f9230cc3c01 6664582f2f29b1bab133ee321913c441ce574c2d root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1749457485 +0000 pull: Fast-forward 6664582f2f29b1bab133ee321913c441ce574c2d 8d78b85ef3c19c0814e12661f2fc6b9df3c7ba5b root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750072090 +0000 pull: Fast-forward 8d78b85ef3c19c0814e12661f2fc6b9df3c7ba5b 00b7ad3121d0dcfb87d4ee0072624ebc4f5422fa root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750322604 +0000 pull: Fast-forward 00b7ad3121d0dcfb87d4ee0072624ebc4f5422fa 0ae7947c3df926382159659505e2516fb5899e5c root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750338205 +0000 pull: Fast-forward 0ae7947c3df926382159659505e2516fb5899e5c b8a939ead2fd9efbb32311bc498efbd8b7aa7714 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750362487 +0000 pull: Fast-forward b8a939ead2fd9efbb32311bc498efbd8b7aa7714 d1a713f9c13b950fbb0af00731e7ed7697c8ad7b root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750364905 +0000 pull: Fast-forward d1a713f9c13b950fbb0af00731e7ed7697c8ad7b 62f3c8a3e4cb33bc20f73d1658f2fcaa868d8267 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750365388 +0000 pull: Fast-forward 62f3c8a3e4cb33bc20f73d1658f2fcaa868d8267 64ead52cdb8b9bd63d98e336c10efc1d023c60ab root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750365686 +0000 pull: Fast-forward 64ead52cdb8b9bd63d98e336c10efc1d023c60ab 5bce8c26600e66842887bbb4aac6c0947f8cf67c root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750365773 +0000 pull: Fast-forward 5bce8c26600e66842887bbb4aac6c0947f8cf67c 37d8008ecefe4c860bd66ab03255afb5ab27a9ea root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750366130 +0000 pull: Fast-forward 37d8008ecefe4c860bd66ab03255afb5ab27a9ea 670493954e039bb814346932c952796d6237d9b7 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750366194 +0000 pull: Fast-forward 670493954e039bb814346932c952796d6237d9b7 372dee493d220c593bcfc734fcb5396f5970adfb root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750366310 +0000 pull: Fast-forward 372dee493d220c593bcfc734fcb5396f5970adfb 061805e19da9c538bcff7e200df828f24c9f03cd root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750366425 +0000 pull: Fast-forward 061805e19da9c538bcff7e200df828f24c9f03cd be851c61d60e93d70ca55bbe013d80ad38c889cc root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750417489 +0000 pull: Fast-forward be851c61d60e93d70ca55bbe013d80ad38c889cc 342a8c53ec3b6b71948c94df952ae8c12db5fd59 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750417720 +0000 pull: Fast-forward 342a8c53ec3b6b71948c94df952ae8c12db5fd59 10851fb41b1307c18453382bf2558442ced567db root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750417758 +0000 pull: Fast-forward 10851fb41b1307c18453382bf2558442ced567db 0509c54d711daab66f8bcb89d46731a50800f7c7 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418091 +0000 pull: Fast-forward 0509c54d711daab66f8bcb89d46731a50800f7c7 8994d78ffe542a5f085d33cd9a65a94036ff73e0 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418162 +0000 pull: Fast-forward 8994d78ffe542a5f085d33cd9a65a94036ff73e0 dac08ac9f494e16a6b2dbf1d154fd8314298d985 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418268 +0000 pull: Fast-forward dac08ac9f494e16a6b2dbf1d154fd8314298d985 58c22bcf51b009567dafb53df4b523e7e36a2b37 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418322 +0000 pull: Fast-forward 58c22bcf51b009567dafb53df4b523e7e36a2b37 1aeba1caa1c91fd4ee2e2ccdf7e35bd5a0eba978 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418372 +0000 pull: Fast-forward 1aeba1caa1c91fd4ee2e2ccdf7e35bd5a0eba978 09ff1528ad115d91b569e71a0444d102614270ef root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418653 +0000 pull: Fast-forward 09ff1528ad115d91b569e71a0444d102614270ef bd4f2fcb23eef142d677628faaaf0bd6d9fdcb72 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418719 +0000 pull: Fast-forward bd4f2fcb23eef142d677628faaaf0bd6d9fdcb72 a099b0df3baa3d9d3006c80afe94483ff7615450 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418895 +0000 pull: Fast-forward a099b0df3baa3d9d3006c80afe94483ff7615450 32d6cd0c67db7b1a7916d5592ad6b17a47cb960b root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750418957 +0000 pull: Fast-forward 32d6cd0c67db7b1a7916d5592ad6b17a47cb960b bb896aeebadc377d3cbb3693b72306c4cc694cef root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1750419750 +0000 pull: Fast-forward bb896aeebadc377d3cbb3693b72306c4cc694cef 03d6ff802049e5fa7c3e550a54b0f839d2f02e1f root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1751459399 +0000 pull: Fast-forward 03d6ff802049e5fa7c3e550a54b0f839d2f02e1f fa0e487f999ed3ba66ea497734110bf04fdbaac9 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1756586722 +0000 pull: Fast-forward fa0e487f999ed3ba66ea497734110bf04fdbaac9 521763f31a9feca457aba66fa5a0cd954c4f3bc2 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1756879998 +0000 pull: Fast-forward 521763f31a9feca457aba66fa5a0cd954c4f3bc2 63720b062bd7f2694c7319f557bee1ada5540d2e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1756979658 +0000 pull: Fast-forward 63720b062bd7f2694c7319f557bee1ada5540d2e 63720b062bd7f2694c7319f557bee1ada5540d2e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1756981625 +0000 checkout: moving from main to main 63720b062bd7f2694c7319f557bee1ada5540d2e 63720b062bd7f2694c7319f557bee1ada5540d2e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1756981639 +0000 reset: moving to HEAD 63720b062bd7f2694c7319f557bee1ada5540d2e cb99ebcc5ebd59ff0f40e9c114826a6a210be5dc root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1756981914 +0000 pull: Fast-forward cb99ebcc5ebd59ff0f40e9c114826a6a210be5dc 58fea033b0bd2340d16252f2b96f09d212cab216 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1758700528 +0000 pull: Fast-forward 58fea033b0bd2340d16252f2b96f09d212cab216 58fea033b0bd2340d16252f2b96f09d212cab216 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1759913626 +0000 reset: moving to HEAD 58fea033b0bd2340d16252f2b96f09d212cab216 519c012daaeda10c324833386d9818b9910e3768 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1759913969 +0000 pull: Fast-forward 519c012daaeda10c324833386d9818b9910e3768 8d7184b51df375477cbf83580392eeebed41fff2 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1759914676 +0000 pull: Fast-forward 8d7184b51df375477cbf83580392eeebed41fff2 52014df511f317e1aa3da51e61ec62e263830b2b root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1765967666 +0000 pull: Fast-forward 52014df511f317e1aa3da51e61ec62e263830b2b c768a1a24ea79c3b31952e5dcaba9cc118684361 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1765969560 +0000 pull: Fast-forward c768a1a24ea79c3b31952e5dcaba9cc118684361 f6e969818863020784f1bb4d28c837d9137f45d2 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1765973090 +0000 pull: Fast-forward f6e969818863020784f1bb4d28c837d9137f45d2 f222300f9d6cb85c99a223384c1ea1affd26b6b0 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1773143653 +0000 pull: Fast-forward var/www/payraty/inventory_main/.git/HEAD 0000644 00000000027 00000000000 0014137 0 ustar 00 ref: refs/heads/master var/www/payraty/hris-standalone/.git/HEAD 0000644 00000000025 00000000000 0014167 0 ustar 00 ref: refs/heads/main var/www/payraty/lms_main/.git/logs/HEAD 0000777 00000025257 00000000000 0013664 0 ustar 00 0000000000000000000000000000000000000000 52c4526c3481425ff22f8f0c9889dc55c8ba2233 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1727972647 +0000 clone: from https://bitbucket.org/payratypayroll/lms_payraty.git 52c4526c3481425ff22f8f0c9889dc55c8ba2233 dc8a79e76dfdbc997819e16215bc502d66968edf root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1727973772 +0000 pull: Fast-forward dc8a79e76dfdbc997819e16215bc502d66968edf 6d522392ae27f834583fc5ee4a11cc14c66e36f4 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1727974163 +0000 pull: Fast-forward 6d522392ae27f834583fc5ee4a11cc14c66e36f4 61384b890b35cf1992536682a88cccbfe2ba0944 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1727974269 +0000 pull: Fast-forward 61384b890b35cf1992536682a88cccbfe2ba0944 382d22efc736cf3f2253cbdd998faac55c37af3e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1727974467 +0000 pull: Fast-forward 382d22efc736cf3f2253cbdd998faac55c37af3e 382d22efc736cf3f2253cbdd998faac55c37af3e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1727974966 +0000 reset: moving to HEAD 382d22efc736cf3f2253cbdd998faac55c37af3e c4b9aeffd250a9ec1d21b4d20a5d11997cabfc12 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1727974971 +0000 pull -f: Fast-forward c4b9aeffd250a9ec1d21b4d20a5d11997cabfc12 b66b46ba5fbb1b13d726073f8b67880462fa6545 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1727976346 +0000 pull: Fast-forward b66b46ba5fbb1b13d726073f8b67880462fa6545 b66b46ba5fbb1b13d726073f8b67880462fa6545 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1729676314 +0000 reset: moving to HEAD b66b46ba5fbb1b13d726073f8b67880462fa6545 af5f78b73c2b35c9bd1d45ef90667a0636952031 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1729676320 +0000 pull: Fast-forward af5f78b73c2b35c9bd1d45ef90667a0636952031 af5f78b73c2b35c9bd1d45ef90667a0636952031 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1729676554 +0000 checkout: moving from main to origin/main af5f78b73c2b35c9bd1d45ef90667a0636952031 af5f78b73c2b35c9bd1d45ef90667a0636952031 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1729676573 +0000 checkout: moving from af5f78b73c2b35c9bd1d45ef90667a0636952031 to main af5f78b73c2b35c9bd1d45ef90667a0636952031 950e10fdb4eac35a4117e5bba5bd4eae794e5ddb root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1729775441 +0000 pull: Fast-forward 950e10fdb4eac35a4117e5bba5bd4eae794e5ddb 39d0a00a050f54d49291444d52fd104ce88893b3 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1729776332 +0000 pull: Fast-forward 39d0a00a050f54d49291444d52fd104ce88893b3 1c512b04cab0467b85dad9be7fa63a9059dfb58e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1729777513 +0000 pull: Fast-forward 1c512b04cab0467b85dad9be7fa63a9059dfb58e 7cbaa787dc9ac06eb5d9410edff3199964011027 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1731584884 +0000 pull: Fast-forward 7cbaa787dc9ac06eb5d9410edff3199964011027 d5810d7f07dbe12e0d9bf0015c47fd7db9c8db69 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732192126 +0000 pull: Fast-forward d5810d7f07dbe12e0d9bf0015c47fd7db9c8db69 72689ef3bbec5c49bc2397f101eb71ed0ff316e6 tony <antonyodu@gmail.com> 1732259961 +0000 pull origin main: Fast-forward 72689ef3bbec5c49bc2397f101eb71ed0ff316e6 0812560e12e096fa82b45dd04e1f6f376a48aaf7 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732475123 +0000 pull: Fast-forward 0812560e12e096fa82b45dd04e1f6f376a48aaf7 2b615e17378608872155369237398144faf4e9be root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732475319 +0000 pull: Fast-forward 2b615e17378608872155369237398144faf4e9be 73fbd2c3799211b677774e309299a820de731d55 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732475448 +0000 pull origin main: Fast-forward 73fbd2c3799211b677774e309299a820de731d55 bc79a9d598b61ee689b4b89e722a88dcb143bcab root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732475821 +0000 pull: Fast-forward bc79a9d598b61ee689b4b89e722a88dcb143bcab 07faba3c6587c089d4993562f29980808250f586 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732475851 +0000 pull: Fast-forward 07faba3c6587c089d4993562f29980808250f586 07faba3c6587c089d4993562f29980808250f586 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732477296 +0000 reset: moving to HEAD 07faba3c6587c089d4993562f29980808250f586 31478ca2ae9d53d11b1a9804c8c3f3d6f0fb2c5c root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732477300 +0000 pull: Fast-forward 31478ca2ae9d53d11b1a9804c8c3f3d6f0fb2c5c ab89371480e977b5984a1d836892129331e03c4e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732477364 +0000 pull: Fast-forward ab89371480e977b5984a1d836892129331e03c4e b12ede7155fdb2c2e3bb7c260d5c047d1b068588 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732477437 +0000 pull: Fast-forward b12ede7155fdb2c2e3bb7c260d5c047d1b068588 61246378ec5d1fbfe88ea2f8812c6065adf71f38 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732477549 +0000 pull: Fast-forward 61246378ec5d1fbfe88ea2f8812c6065adf71f38 ef91130c7af3432b1e6b88d0e56245212c42d1dd root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732477678 +0000 pull: Fast-forward ef91130c7af3432b1e6b88d0e56245212c42d1dd 3b0b379bf500a4c94a3fb36c65589170a35947dd root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732477895 +0000 pull: Fast-forward 3b0b379bf500a4c94a3fb36c65589170a35947dd 994a9d8d1ef79a670af3273b3e6e3813bcf82f1f root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478233 +0000 pull: Fast-forward 994a9d8d1ef79a670af3273b3e6e3813bcf82f1f e17ae8ac27e00288cc4600aa712b5c048ed865fd root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478281 +0000 pull origin main: Fast-forward e17ae8ac27e00288cc4600aa712b5c048ed865fd 4426f8e4f8cb524a21b01067750879cd11dadf33 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478393 +0000 pull: Fast-forward 4426f8e4f8cb524a21b01067750879cd11dadf33 561c94cf9cd4717405631cd388460369126b5989 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478460 +0000 pull: Fast-forward 561c94cf9cd4717405631cd388460369126b5989 3175a0706b64722ca4bc1c62fe373bbb70865796 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478531 +0000 pull: Fast-forward 3175a0706b64722ca4bc1c62fe373bbb70865796 da3a098a8697381306e5dc14a04416c711b01c10 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478579 +0000 pull: Fast-forward da3a098a8697381306e5dc14a04416c711b01c10 7f4d92a543a5971b28c677fc2da7776624bdbe29 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478618 +0000 pull: Fast-forward 7f4d92a543a5971b28c677fc2da7776624bdbe29 4bd36b8ea2a281f9caeb096dfdd0008c0b733cc4 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478654 +0000 pull: Fast-forward 4bd36b8ea2a281f9caeb096dfdd0008c0b733cc4 732b72a3c035f15f02a2468319ad6e2ba932226b root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478734 +0000 pull: Fast-forward 732b72a3c035f15f02a2468319ad6e2ba932226b 31a074007a17e09e1c294e22f5d402c580f855e5 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478755 +0000 pull: Fast-forward 31a074007a17e09e1c294e22f5d402c580f855e5 837e701acf31efbe7c532270f9b86d0f126cc76e root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478831 +0000 pull: Fast-forward 837e701acf31efbe7c532270f9b86d0f126cc76e ef1a5221b158ecaada507b75ffbba3003c615cf5 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478878 +0000 pull: Fast-forward ef1a5221b158ecaada507b75ffbba3003c615cf5 8caa43540460a562a701925709bd175ebdd774c2 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732478938 +0000 pull: Fast-forward 8caa43540460a562a701925709bd175ebdd774c2 cd57c4f4359fac3ec0fd7acd89e4334808233603 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479017 +0000 pull: Fast-forward cd57c4f4359fac3ec0fd7acd89e4334808233603 66d7e61f8449856360a876cc45e5f80708e80089 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479044 +0000 pull: Fast-forward 66d7e61f8449856360a876cc45e5f80708e80089 e70291a18d4aff0488864a5bbb795ab26c9c836b root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479136 +0000 pull: Fast-forward e70291a18d4aff0488864a5bbb795ab26c9c836b 1fef1e84485db3dc0d4c8d490ce06bff67335291 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479330 +0000 pull origin main: Fast-forward 1fef1e84485db3dc0d4c8d490ce06bff67335291 8f4c0f72828a2ba8cb6630fd5be64b11b2a3b986 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479429 +0000 pull: Fast-forward 8f4c0f72828a2ba8cb6630fd5be64b11b2a3b986 b0b04e7b9df51e96c3c3b41ebfbfa51e69aa1f50 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479522 +0000 pull: Fast-forward b0b04e7b9df51e96c3c3b41ebfbfa51e69aa1f50 e0d407843fb7ef13d079a618340915728a64cfc9 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479730 +0000 pull origin main: Fast-forward e0d407843fb7ef13d079a618340915728a64cfc9 52315d0da296306509c14a6fc106e7845ddf2a4d root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479805 +0000 pull: Fast-forward 52315d0da296306509c14a6fc106e7845ddf2a4d 62c883c7b5532f4eb0fbcd1cd8d549faf4606989 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479947 +0000 pull: Fast-forward 62c883c7b5532f4eb0fbcd1cd8d549faf4606989 3f2483a1133a783bf9e6951f80794c89bdf5e5f3 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732479985 +0000 pull: Fast-forward 3f2483a1133a783bf9e6951f80794c89bdf5e5f3 8607f999b6bdba9e5c7b3312ce776879156200b9 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732480377 +0000 pull: Fast-forward 8607f999b6bdba9e5c7b3312ce776879156200b9 045a8c6655781100b558fdafdab337401e95fef0 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732480579 +0000 pull: Fast-forward 045a8c6655781100b558fdafdab337401e95fef0 9100c63eddcce195e017ec59db188e1b6fab9a6a root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732481010 +0000 pull origin main: Fast-forward 9100c63eddcce195e017ec59db188e1b6fab9a6a 313ac01ccd73362d87166aa1fa95cde5dbb75d73 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732481113 +0000 pull origin main: Fast-forward 313ac01ccd73362d87166aa1fa95cde5dbb75d73 b0d33a97d3d1708d6c1e9ac21b927f6d8c071117 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1732523294 +0000 pull: Fast-forward b0d33a97d3d1708d6c1e9ac21b927f6d8c071117 d2aa7507cd68007df2f8659fa4feef18ff1f464d root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1733126416 +0000 pull origin main: Fast-forward d2aa7507cd68007df2f8659fa4feef18ff1f464d 03b1b306f814922484b39d1477b0b94883a05934 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1733484509 +0000 pull: Fast-forward 03b1b306f814922484b39d1477b0b94883a05934 d7cc1c0fa691598516ee24a3ab7dc2149b352d41 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1733484694 +0000 pull: Fast-forward d7cc1c0fa691598516ee24a3ab7dc2149b352d41 befa83d7379459b14e97acbe5dbe129be2be9fa4 root <root@ip-172-31-19-15.eu-west-2.compute.internal> 1733485193 +0000 pull: Fast-forward
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings