startgit

Static page generator for git repositories
git clone git://git.dimitrijedobrota.com/startgit.git
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |

tag.cpp (265B)


1 #include "tag.hpp" 2 3 #include "utils.hpp" 4 5 namespace startgit 6 { 7 8 tag::tag(const git2wrap::tag& tagg) 9 : m_name(tagg.get_name()) 10 , m_author(tagg.get_tagger().get_name()) 11 , m_time(time_short(tagg.get_tagger().get_time().time)) 12 { 13 } 14 15 } // namespace startgit