June 2017
Beginner
1091 pages
22h 9m
English
One of the tools that is shipped with Go allows programmers to retrieve packages directly from remote source code repositories. Go, by default, readily supports integration with version control systems including the following:
git, http://git-scm.com/)hg, https://www.mercurial-scm.org/)svn, http://subversion.apache.org/)bzr, http://bazaar.canonical.com/)In order for Go to pull package source code from a remote repository, you must have a client for that version control system installed as a command on your operating system's execution path. Under the cover, Go launches the client to interact with the source code repository server.
The get command-line tool allows programmers to retrieve remote ...
Read now
Unlock full access