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

# README

VIS

GoDoc

About

VIS (Visual Interface System) is a Go package that provides abstraction of graphic output.

VIS is created by Vitali Baumtrok [email protected] and published at https://github.com/vbsw/vis.

Copying

VIS is distributed under the terms of the Boost Software License, version 1.0. (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)

VIS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Boost Software License for more details.

Using Go

Get this project:

$ go get github.com/vbsw/vis

Update a local copy:

$ go get -u github.com/vbsw/vis

Compile:

$ go install github.com/vbsw/vis

Using Git

Get the master branch and all refs of this project:

$ git clone https://github.com/vbsw/vis.git

See local and remote branches:

$ git branch -a

Check out branches other 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

References