git-lfs/commands/command_install.go
Taylor Blau 4593d0a641 vendor: vendor dependencies in vendor/ using Glide
- script/vendor received an update in order to work with Glide
- import paths have been rewritten to work with GO15VENDOREXPERIMENT
2016-05-23 12:10:35 -06:00

59 lines
1.5 KiB
Go

package commands
import (
"github.com/github/git-lfs/lfs"
"github.com/spf13/cobra"
)
var (
installCmd = &cobra.Command{
Use: "install",
Run: installCommand,
}
installHooksCmd = &cobra.Command{
Use: "hooks",
Run: installHooksCommand,
}
forceInstall = false
localInstall = false
skipSmudgeInstall = false
)
func installCommand(cmd *cobra.Command, args []string) {
if localInstall {
requireInRepo()
}
opt := lfs.InstallOptions{Force: forceInstall, Local: localInstall}
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() {
installCmd.Flags().BoolVarP(&forceInstall, "force", "f", false, "Set the Git LFS global config, overwriting previous values.")
installCmd.Flags().BoolVarP(&localInstall, "local", "l", false, "Set the Git LFS config for the local Git repository only.")
installCmd.Flags().BoolVarP(&skipSmudgeInstall, "skip-smudge", "s", false, "Skip automatic downloading of objects on clone or pull.")
installCmd.AddCommand(installHooksCmd)
RootCmd.AddCommand(installCmd)
}