git-lfs/commands/command_init.go

59 lines
1.4 KiB
Go
Raw Normal View History

package commands
import (
2015-03-19 19:30:55 +00:00
"github.com/github/git-lfs/lfs"
2015-05-25 18:20:50 +00:00
"github.com/github/git-lfs/vendor/_nuts/github.com/spf13/cobra"
)
2014-06-26 20:15:21 +00:00
var (
initCmd = &cobra.Command{
2015-09-17 22:08:28 +00:00
Use: "init",
Run: initCommand,
2014-06-26 20:15:21 +00:00
}
2014-06-26 21:32:32 +00:00
initHooksCmd = &cobra.Command{
2015-09-17 22:08:28 +00:00
Use: "hooks",
Run: initHooksCommand,
}
2015-07-06 23:10:47 +00:00
forceInit = false
localInit = false
skipSmudgeInit = false
2014-06-26 21:32:32 +00:00
)
2014-06-26 21:32:32 +00:00
func initCommand(cmd *cobra.Command, args []string) {
2015-09-23 17:58:16 +00:00
if localInit {
requireInRepo()
}
opt := lfs.InstallOptions{Force: forceInit, Local: localInit}
if skipSmudgeInit {
2015-09-23 18:20:30 +00:00
// assume the user is changing their smudge mode, so enable force implicitly
opt.Force = true
}
if err := lfs.InstallFilters(opt, skipSmudgeInit); err != nil {
2014-06-26 21:32:32 +00:00
Error(err.Error())
2015-07-06 23:10:47 +00:00
Exit("Run `git lfs init --force` to reset git config.")
}
2015-10-19 20:47:18 +00:00
if localInit || lfs.InRepo() {
initHooksCommand(cmd, args)
}
Print("Git LFS initialized.")
}
2014-06-26 21:32:32 +00:00
func initHooksCommand(cmd *cobra.Command, args []string) {
updateForce = forceInit
updateCommand(cmd, args)
}
func init() {
2015-07-06 23:10:47 +00:00
initCmd.Flags().BoolVarP(&forceInit, "force", "f", false, "Set the Git LFS global config, overwriting previous values.")
2015-09-23 17:58:16 +00:00
initCmd.Flags().BoolVarP(&localInit, "local", "l", false, "Set the Git LFS config for the local Git repository only.")
initCmd.Flags().BoolVarP(&skipSmudgeInit, "skip-smudge", "s", false, "Skip automatic downloading of objects on clone or pull.")
2014-06-26 21:32:32 +00:00
initCmd.AddCommand(initHooksCmd)
2014-06-26 20:15:21 +00:00
RootCmd.AddCommand(initCmd)
}