# README
GDS
About
GDS (Go Data Structures) is a library of data structures for the programming language Go.
GDS is created by Vitali Baumtrok [email protected] and published at https://gitlab.com/vbit/gds.
Copying
GDS 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)
GDS 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 gitlab.com/vbit/gds
Update a local copy:
$ go get -u gitlab.com/vbit/gds
Compile:
$ go install gitlab.com/vbit/gds
Run tests
$ go test gitlab.com/vbit/gds
Using Git
Get the master branch and all refs of this project:
$ git clone https://gitlab.com/vbit/gds.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