Programing

Mac에서 git 구성 파일을 찾는 방법

lottogame 2020. 9. 15. 19:10
반응형

Mac에서 git 구성 파일을 찾는 방법 [중복]


이 질문에 이미 답변이 있습니다.

제목에서 알 수 있듯이 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 

문제에 대한 해결책은 다음과 같습니다.

  1. .gitconfig 파일 찾기

  2. [사용자] 이름 = 1wQasdTeedFrsweXcs234saS56Scxs5423 email = ankittanna@hotmail.com [credential] helper = osxkeychain [url ""] insteadOf = git : // [url "https : //"] [url "https : //"] insteadOf = git : //

url = "" 이있을 것 입니다. url = "https : //"로 바꿉니다.

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

이것은 작동합니다 :)

행복한 Bower-ing

참고 URL : https://stackoverflow.com/questions/16283280/how-to-locate-the-git-config-file-in-mac

반응형