git-lfs/commands/command_install.go
Chris Darroch af08228f25 revise some informational and error messages
We rephrase and repunctuate a few error and informational
message strings so they are clearer and more consistent with
our other messages.

In particular, in the git/gitattr package we replace one
message which consisted solely of the package's name with
a more explanatory error message.
2022-01-29 22:10:48 -08:00

97 lines
3.3 KiB
Go

package commands
import (
"os"
"github.com/git-lfs/git-lfs/v3/git"
"github.com/git-lfs/git-lfs/v3/lfs"
"github.com/git-lfs/git-lfs/v3/tr"
"github.com/spf13/cobra"
)
var (
forceInstall = false
localInstall = false
worktreeInstall = false
manualInstall = false
systemInstall = false
skipSmudgeInstall = false
skipRepoInstall = false
)
func installCommand(cmd *cobra.Command, args []string) {
if err := cmdInstallOptions().Install(); err != nil {
Print(tr.Tr.Get("warning: %s\nRun `git lfs install --force` to reset Git configuration.", err.Error()))
os.Exit(2)
}
if !skipRepoInstall && (localInstall || worktreeInstall || cfg.InRepo()) {
installHooksCommand(cmd, args)
}
Print(tr.Tr.Get("Git LFS initialized."))
}
func cmdInstallOptions() *lfs.FilterOptions {
requireGitVersion()
if localInstall || worktreeInstall {
setupRepository()
}
switch {
case localInstall && worktreeInstall:
Exit(tr.Tr.Get("Only one of --local and --worktree options can be specified."))
case localInstall && systemInstall:
Exit(tr.Tr.Get("Only one of --local and --system options can be specified."))
case worktreeInstall && systemInstall:
Exit(tr.Tr.Get("Only one of --worktree and --system options can be specified."))
}
// This call will return -1 on Windows; don't warn about this there,
// since we can't detect it correctly.
uid := os.Geteuid()
if systemInstall && uid != 0 && uid != -1 {
Print("warning: current user is not root/admin, system install is likely to fail.")
}
return &lfs.FilterOptions{
GitConfig: cfg.GitConfig(),
Force: forceInstall,
Local: localInstall,
Worktree: worktreeInstall,
System: systemInstall,
SkipSmudge: skipSmudgeInstall,
}
}
func installHooksCommand(cmd *cobra.Command, args []string) {
updateForce = forceInstall
// TODO(@ttaylorr): this is a hack since the `git-lfs-install(1)` calls
// into the function that implements `git-lfs-update(1)`. Given that,
// there is no way to pass flags into that function, other than
// hijacking the flags that `git-lfs-update(1)` already owns.
//
// At a later date, extract `git-lfs-update(1)`-related logic into its
// own function, and translate this flag as a boolean argument to it.
updateManual = manualInstall
updateCommand(cmd, args)
}
func init() {
RegisterCommand("install", installCommand, func(cmd *cobra.Command) {
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.")
if git.IsGitVersionAtLeast("2.20.0") {
cmd.Flags().BoolVarP(&worktreeInstall, "worktree", "w", false, "Set the Git LFS config for the current Git working tree, if multiple working trees are configured; otherwise, the same as --local.")
}
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.Flags().BoolVarP(&skipRepoInstall, "skip-repo", "", false, "Skip repo setup, just install global filters.")
cmd.Flags().BoolVarP(&manualInstall, "manual", "m", false, "Print instructions for manual install.")
cmd.AddCommand(NewCommand("hooks", installHooksCommand))
})
}