如何在 Mac 中定位 git 配置文件

如标题所示,如何在 Mac 中定位 git 配置文件?不知道怎么找到它。需要设置

git config --global http.postBuffer 524288000

需要一些指导,找到它. 。

261236 次浏览

全局 Git 配置文件存储在所有平台上的 $HOME/.gitconfig中。

但是,您可以简单地打开一个终端并执行 git config,它将向该文件写入适当的更改。您不应该需要手动调整 .gitconfig,除非您特别想这样做。

解决这个问题的办法是:

  1. 找到 。 gitconfig文件

  2. [使用者] Name = 1wQasdTeedFrswXcs234saS56Scxs5423 电子邮件 = ankittanna@hotmail.com [凭证] Helper = osxkeychain [网址] // [网址: https://] [网址: https://] = git://

会有一个空白的 < strong > url = “” 将其替换为 < strong > url = “ https://”

[user]
name = 1wQasdTeedFrsweXcs234saS56Scxs5423
email = ankittanna@hotmail.com
[credential]
helper = osxkeychain
[url "https://"]
insteadOf = git://
[url "https://"]
[url "https://"]
insteadOf = git://

这会有用的:)

打保龄球快乐

我使用这个保存在. bash _ profile 中的函数,它非常适合我。

function show_hidden () {
{ defaults write com.apple.finder AppleShowAllFiles $1; killall -HUP Finder; }
}

使用方法:

show_hidden true|false

你不需要找到文件。

只能在终端上写这条指令:

git config --global --edit