Source File
server.go
Belonging Package
github.com/go-git/go-git/v5/plumbing/transport/file
package file
import (
)
func ( string) error {
, := transport.NewEndpoint()
if != nil {
return
}
, := server.DefaultServer.NewUploadPackSession(, nil)
if != nil {
return fmt.Errorf("error creating session: %s", )
}
return common.ServeUploadPack(srvCmd, )
}
func ( string) error {
, := transport.NewEndpoint()
if != nil {
return
}
, := server.DefaultServer.NewReceivePackSession(, nil)
if != nil {
return fmt.Errorf("error creating session: %s", )
}
return common.ServeReceivePack(srvCmd, )
}
var srvCmd = common.ServerCommand{
Stdin: os.Stdin,
Stdout: ioutil.WriteNopCloser(os.Stdout),
Stderr: os.Stderr,
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |