从 Golang 教程中我不清楚如何将 Golang 代码放到 Github 以便以后能够从 Github 将该代码作为包导入。
这是来自 Golang 教程http://golang.org/doc/code.html的示例项目工作区(目录结构):
bin/
hello # command executable
pkg/
linux_amd64/ # this will reflect your OS and architecture
github.com/user/
newmath.a # package object
src/
github.com/user/
hello/
hello.go # command source
newmath/
sqrt.go # package source
那么,我需要做什么,我需要git init
在这个工作区中的哪个位置,以便以后能够:
仅将
newmath
包导入我的某个单独项目。这边走:import "github.com/user/newmath"
只获得
hello.exe
可执行文件。获取整个项目工作区(所有目录:bin、pkg、src)。