From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/env perl
package
git_update_environment;
# ABSTRACT: Update a Puppet environment from another branch
use strict;
App::Puppet::Environment::Updater->new_with_options()->run();
__END__
=pod
=encoding UTF-8
=head1 NAME
git_update_environment - Update a Puppet environment from another branch
=head1 VERSION
version 0.001002
=head1 SYNOPSIS
$ git update-environment --environment production --from development
=head1 SEE ALSO
=over
=item *
L<App::Puppet::Environment::Updater|App::Puppet::Environment::Updater>
=back
=head1 AUTHOR
Manfred Stock <mstock@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2022 by Manfred Stock.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut