git 提交并收到错误“[1] 3910 分段错误(核心已转储)”
git commit and got error " [1] 3910 segmentation fault (core dumped) "
我使用 git commit 并得到一个错误:
[1] 3910 segmentation fault (core dumped)
这是我的 ~/.git配置文件:
[include]
path = ~/some/where/gitconfig
我把我的配置放在 ~/some/where/gitconfig.
有什么想法吗?
我明白了。
你不能放这样的东西:
[action]
subaction
您必须为子操作赋值。
但是你可以这样写:
[action]
所以,你可以用一个git配置文件调用其他配置文件。
我使用 git commit 并得到一个错误: [1] 3910 segmentation fault (core dumped)
这是我的 ~/.git配置文件:
[include]
path = ~/some/where/gitconfig
我把我的配置放在 ~/some/where/gitconfig.
有什么想法吗?
我明白了。 你不能放这样的东西:
[action]
subaction
您必须为子操作赋值。
但是你可以这样写:
[action]
所以,你可以用一个git配置文件调用其他配置文件。