what does "./..." in "go install ./..." mean in go language?

go, installation

Solution

The go command interprets `example/path/...` as `example/path/` and all subdirectories. You might want to read the section, Description of package lists, on how `go` finds your packages..

Problem

I am a beginner of go. I tried to compile a go project, but I can not find any doc or article explaning "`/...`". ``` cd ~/src/ephenation-server go install -v ./... ``` Waiting for your help.

Original source