Git

詹金斯報告的未知選項 git config –local

  • April 16, 2014

我在堆棧溢出上問了同樣的問題,但我只有 5 次查看,我認為這是一個更好的論壇來解決這個問題。

我正在為私人倉庫中託管在 github 上的 C# 項目設置 CI。Git 安裝在主 CentOS 機器上,MSBuild 安裝在從屬視窗上。

我在 github 上創建了帳戶,並將其添加到我的私人倉庫中。當我在 Jenkins 上設置原始碼控制時,我輸入了 URL(如https://github.com/.../repo.git)並使用新帳戶輸入了憑據。

詹金斯報告:

Failed to connect to repository : Command "git config --local credential.helper store --file=/tmp/git2956041026506359040.credentials" returned status code 129:
stdout: 
stderr: error: unknown option `local'
usage: git config [options]

Config file location
   --global              use global config file
   --system              use system config file
   -f, --file <FILE>     use given config file

Action
   --get                 get value: name [value-regex]
   --get-all             get all values: key [value-regex]
   --get-regexp          get values for regexp: name-regex [value-regex]
   --replace-all         replace all matching variables: name value [value_regex]
   --add                 adds a new variable: name value
   --unset               removes a variable: name [value-regex]
   --unset-all           removes all matches: name [value-regex]
   --rename-section      rename section: old-name new-name
   --remove-section      remove a section: name
   -l, --list            list all
   -e, --edit            opens an editor
   --get-color <slot>    find the color configured: [default]
   --get-colorbool <slot>
                         find the color setting: [stdout-is-tty]

Type
   --bool                value is "true" or "false"
   --int                 value is decimal number
   --bool-or-int         value is --bool or --int
   --path                value is a path (file or directory name)

Other
   -z, --null            terminate values with NUL byte

如果我登錄到 master 並在根控制台上嘗試相同的命令,我會得到相同的錯誤,–local 不是 git config 的選項。

CentOS 6(我在這裡假設版本 6)正在發布 git 版本 1.7.1。

--local開關是在 1.7.4 版本中引入的。

因此,它在您使用的版本中不可用。

引用自:https://serverfault.com/questions/589386