package
0.0.0-20220611142855-c75633e8f939
Repository: https://github.com/vbsw/archive.git
Documentation: pkg.go.dev

# README

Package Info

GoDoc

Abstract

Package Info provides interfaces and functions to add package description to you Go package.

Package Info is created by Vitali Baumtrok [email protected] and published at https://gitlab.com/vbg/pkgi.

Copying

Package Info is distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)

Using Go

How to install Go: https://golang.org/doc/install

Get this project:

$ go get gitlab.com/vbg/pkgi

Update a local copy:

$ go get -u gitlab.com/vbg/pkgi

Compile:

$ go install gitlab.com/vbg/pkgi

Using Git

How to install Git: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git

Get the master branch and all refs of this project:

$ git clone https://gitlab.com/vbg/pkgi.git
$ cd pkgi

See all tags:

$ git tag -l

See local and remote branches:

$ git branch -a

Checkout other branches than master, for example the development branch:

$ git branch development origin/development
$ git checkout development

See tracked remote branches:

$ git branch -vv

Update all tracked branches and all refs:

$ git fetch