2013-04-29 286 views
49

如標題所示,如何在Mac中找到git配置文件?不知道如何找到它。需要設置如何在Mac中找到git配置文件

git config --global http.postBuffer 524288000 

需要一些指導上找到它..

回答

71

全球Git的配置文件存儲在$HOME/.gitconfig在所有平臺上。

但是,您可以簡單地打開一個終端並執行git config,它會將相應的更改寫入此文件。你不應該手動調整.gitconfig,除非你特別想。

+0

可如何找到Mac上的文件夾指定?需要更多的幫助來找到文件... – lakesh 2013-04-29 16:26:15

+1

@lakesh打開一個終端和'echo $ HOME'。 – cdhowie 2013-04-29 16:26:39

+2

鍵入vim〜/ .gitconfig – lakesh 2013-04-29 16:29:02

1

上述問題的解決方案是:

  1. 找到的.gitconfig文件

  2. [用戶] 名= 1wQasdTeedFrsweXcs234saS56Scxs5423 電子郵件= [email protected] [憑證] helper = osxkeychain [url「」] insteadOf = git:// [url] https://「] [URL 「https://開頭」] 與其使用的git =://

會有一個空白URL = 「」URL替換它= 「https://開頭」

[user] 
    name = 1wQasdTeedFrsweXcs234saS56Scxs5423 
    email = [email protected] 
[credential] 
    helper = osxkeychain 
[url "https://"] 
    insteadOf = git:// 
[url "https://"] 
[url "https://"] 
    insteadOf = git:// 

這將工作:)

快樂鮑爾-ING

3

我使用這個函數保存在.bash_profile中,它對我來說是一種享受。

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

如何使用:

show_hidden true|false 
+0

AppleShowAllFiles YES; killall Finder/System/Library/CoreServices/Finder.app'' AND
'alias hideFiles ='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder/System/Library/CoreServices/Finder.app''。然後使用簡單的控制檯輸入:'showFiles'或'hideFiles' – DaddyMoe 2015-09-21 13:14:39

42

你並不需要找到該文件。

只寫在終端指令:

git config --global --edit