如标题所述,如何在 Mac 中找到 git 配置文件?不知道如何找到它。需要设置
git config --global http.postBuffer 524288000
需要一些指导才能找到它..
全局 Git 配置文件存储在$HOME/.gitconfig
所有平台上。
但是,您可以简单地打开终端并执行git config
,这会将适当的更改写入此文件。.gitconfig
除非您特别想要,否则您不需要手动调整。
您无需查找该文件。
只在终端上写这个指令:
git config --global --edit
我使用保存在 .bash_profile 中的这个函数,它对我很有用。
function show_hidden () {
{ defaults write com.apple.finder AppleShowAllFiles $1; killall -HUP Finder; }
}
如何使用:
show_hidden true|false
问题的解决方案是:
找到.gitconfig文件
[用户] name = 1wQasdTeedFrsweXcs234saS56Scxs5423 email = ankittanna@hotmail.com [credential] helper = osxkeychain [url ""] insteadOf = git:// [url "https://"] [url "https://"] insteadOf =混帐://
会有一个空白的url="" 将其替换为url="https://"
[user]
name = 1wQasdTeedFrsweXcs234saS56Scxs5423
email = ankittanna@hotmail.com
[credential]
helper = osxkeychain
[url "https://"]
insteadOf = git://
[url "https://"]
[url "https://"]
insteadOf = git://
这将工作:)
快乐的鲍尔宁