gpt4 book ai didi

git - 重置 git 模板路径

转载 作者:太空狗 更新时间:2023-10-29 14:32:31 25 4
gpt4 key购买 nike

我正在尝试将 git 模板路径设置为:

– git config --global commit.template  <path to template>

对于第一次尝试,我输入了错误的路径并且无法再次重置路径,我遇到了以下错误:

warning: commit.template has multiple values
error: cannot overwrite multiple values with a single value
Use a regexp, --add or --replace-all to change commit.template.

因此我无法执行git commit

编辑:

最初我执行了:

– git config --global commit.template  E:/mygit

我的 git 只是文件夹,我忘了提到文件名

下次我执行:

enter image description here

任何指向我的查询的指针都将不胜感激。

最佳答案

您可以使用以下方法删除它:

git config --global --unset-all commit.template

我不确定您是如何在其中得到多个值的。当我调用 git config commit.template foo.txt 时,它会覆盖之前的值。

我可以重现您的问题的唯一方法是使用 git config --add commit.template foo.txt,这似乎添加了第二个值。

如果您不想使用命令行,您也可以使用文本编辑器编辑您的全局 git 配置文件。它可能包含如下部分:

[commit]
template = template2.txt
template = template.txt

关于git - 重置 git 模板路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28582972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com