git-lfs/commands/command_install.go

73 lines
1.8 KiB
Go
Raw Normal View History

2015-11-16 20:31:26 +00:00
package commands
import (
"os"
2015-11-16 20:31:26 +00:00
"github.com/github/git-lfs/lfs"
"github.com/spf13/cobra"
2015-11-16 20:31:26 +00:00
)
var (
forceInstall = false
localInstall = false
systemInstall = false
2015-11-16 20:31:26 +00:00
skipSmudgeInstall = false
)
func installCommand(cmd *cobra.Command, args []string) {
requireGitVersion()
2015-11-16 20:31:26 +00:00
if localInstall {
requireInRepo()
}
if systemInstall && os.Geteuid() != 0 {
Print("WARNING: current user is not root/admin, system install is likely to fail.")
}
if localInstall && systemInstall {
Exit("Only one of --local and --system options can be specified.")
}
opt := lfs.InstallOptions{Force: forceInstall, Local: localInstall, System: systemInstall}
2015-11-16 20:31:26 +00:00
if skipSmudgeInstall {
// assume the user is changing their smudge mode, so enable force implicitly
opt.Force = true
}
if err := lfs.InstallFilters(opt, skipSmudgeInstall); err != nil {
Error(err.Error())
Exit("Run `git lfs install --force` to reset git config.")
}
if localInstall || lfs.InRepo() {
installHooksCommand(cmd, args)
}
Print("Git LFS initialized.")
}
func installHooksCommand(cmd *cobra.Command, args []string) {
updateForce = forceInstall
updateCommand(cmd, args)
}
func init() {
RegisterSubcommand(func() *cobra.Command {
cmd := &cobra.Command{
Use: "install",
Run: installCommand,
}
cmd.Flags().BoolVarP(&forceInstall, "force", "f", false, "Set the Git LFS global config, overwriting previous values.")
cmd.Flags().BoolVarP(&localInstall, "local", "l", false, "Set the Git LFS config for the local Git repository only.")
2016-08-17 21:16:10 +00:00
cmd.Flags().BoolVarP(&systemInstall, "system", "", false, "Set the Git LFS config in system-wide scope.")
cmd.Flags().BoolVarP(&skipSmudgeInstall, "skip-smudge", "s", false, "Skip automatic downloading of objects on clone or pull.")
cmd.AddCommand(&cobra.Command{
Use: "hooks",
Run: installHooksCommand,
})
return cmd
})
2015-11-16 20:31:26 +00:00
}