gitforgefs/git/clone.go

81 lines
2.1 KiB
Go
Raw Normal View History

package git
import (
"fmt"
"strconv"
"github.com/badjware/gitlabfs/utils"
)
func (c *gitClient) clone(url string, defaultBranch string, dst string) error {
if c.GitClientParam.OnClone == "init" {
// "Fake" cloning the repo by never actually talking to the git server
// This skip a fetch operation that we would do if we where to do a proper clone
// We can save a lot of time and network i/o doing it this way, at the cost of
// resulting in a very barebone local copy
2021-03-03 05:24:27 +00:00
// Init the local repo
fmt.Printf("Initializing %v into %v\n", url, dst)
_, err := utils.ExecProcess(
"git", "init",
"--initial-branch", defaultBranch,
"--",
dst, // directory
)
if err != nil {
return fmt.Errorf("failed to init git repo %v to %v: %v", url, dst, err)
}
// Configure the remote
_, err = utils.ExecProcessInDir(
dst, // workdir
"git", "remote", "add",
"-m", defaultBranch,
"--",
c.GitClientParam.Remote, // name
url, // url
)
if err != nil {
return fmt.Errorf("failed to setup remote %v in git repo %v: %v", url, dst, err)
}
// Configure the default branch
_, err = utils.ExecProcessInDir(
dst, // workdir
"git", "config", "--local",
"--",
fmt.Sprintf("branch.%s.remote", defaultBranch), // key
c.GitClientParam.Remote, // value
)
if err != nil {
return fmt.Errorf("failed to setup default branch remote in git repo %v: %v", dst, err)
}
_, err = utils.ExecProcessInDir(
dst, // workdir
"git", "config", "--local",
"--",
fmt.Sprintf("branch.%s.merge", defaultBranch), // key
fmt.Sprintf("refs/heads/%s", defaultBranch), // value
)
if err != nil {
return fmt.Errorf("failed to setup default branch merge in git repo %v: %v", dst, err)
}
2021-03-03 05:24:27 +00:00
} else {
// Clone the repo
_, err := utils.ExecProcess(
"git", "clone",
"--origin", c.GitClientParam.Remote,
"--depth", strconv.Itoa(c.GitClientParam.Depth),
2021-03-03 05:24:27 +00:00
"--",
url, // repository
dst, // directory
2021-03-03 05:24:27 +00:00
)
if err != nil {
return fmt.Errorf("failed to clone git repo %v to %v: %v", url, dst, err)
}
}
return nil
}