github.com/michaeltrobinson/godep@v0.0.0-20160912215839-8088bcf2e78b/doc.go (about)

     1  /*
     2  
     3  Command godep helps build packages reproducibly by fixing
     4  their dependencies.
     5  
     6  Example Usage
     7  
     8  Save currently-used dependencies to file Godeps:
     9  
    10  	$ godep save
    11  
    12  Build project using saved dependencies:
    13  
    14  	$ godep go install
    15  
    16  or
    17  
    18  	$ GOPATH=`godep path`:$GOPATH
    19  	$ go install
    20  
    21  */
    22  package main