Hi.
The Go language has a tool to fetch content from git repositories, build the result, and install a binary along GOPATH/bin.
Here is an example that works, but installs the binary strappy as "strappy.git", which is a slight misnomer.
$ go get stash.example.com:7990/scm/inf/strappy.git
Of course, I do not want to forbid repository URLs ending in .git, but I would like to make it optional so I could do this
$ go get stash.example.com:7990/scm/inf/strappy
Is this possible in Stash?
Thanks.