• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Git/Version/H24-May-2016-31791

t/H24-May-2016-569449

ChangesH A D24-May-20161 KiB2620

LICENSEH A D24-May-201617.9 KiB380292

MANIFESTH A D24-May-2016345 2019

META.jsonH A D24-May-20161.9 KiB7674

META.ymlH A D24-May-2016880 3736

Makefile.PLH A D24-May-20161.3 KiB6251

READMEH A D24-May-2016960 3119

dist.iniH A D24-May-20161.1 KiB5743

README

1NAME
2
3    Git::Version::Compare - Functions to compare Git versions
4
5SYNOPSIS
6
7    use Git::Version::Compare qw( cmp_git );
8
9    # result: 1.2.3 1.7.0.rc0 1.7.4.rc1 1.8.3.4 1.9.3 2.0.0.rc2 2.0.3 2.3.0.rc1
10    my @versions = sort cmp_git qw(
11      1.7.4.rc1 1.9.3 1.7.0.rc0 2.0.0.rc2 1.2.3 1.8.3.4 2.3.0.rc1 2.0.3
12    );
13
14DESCRIPTION
15
16    Git::Version::Compare contains a selection of subroutines that make
17    dealing with Git-related things (like versions) a little bit easier.
18
19    The strings to compare can be version numbers, tags from "git.git" or the
20    output of "git version" or "git describe".
21
22    These routines collect the knowledge about Git versions that was
23    accumulated while developing Git::Repository.
24
25COPYRIGHT AND LICENSE
26
27    This software is copyright (c) 2016 by Philippe Bruhat (BooK).
28
29    This is free software; you can redistribute it and/or modify it under
30    the same terms as the Perl 5 programming language system itself.
31