當我從他們的官方網站下載Git到我的Mac ....我已經嘗試了近一個多小時,並觀看了無數的教程,包括official website,但仍然有麻煩安裝它,實際上在我的Mac中找到它。在我遵循他們的指示之後,終端對代碼的反應也與指示不同。在我的Mac中沒有找到作爲文件的位置,儘管它顯示在終端上。雖然它顯示在終端上,但我無法遵循常規安裝過程。你能否發現問題?無法在Mac上安裝Git
打開我的終端....設置的用戶名和電子郵件到終端..... 當我檢查「混帳配置--list」,它給人的代碼是
core.excludesfile=~/.gitignore
core.legacyheaders=false
core.quotepath=false
core.pager=less
mergetool.keepbackup=true
push.default=simple
color.ui=auto
color.interactive=auto
repack.usedeltabaseoffset=true
alias.s=status
alias.a=!git add . && git status
alias.au=!git add -u . && git status
alias.aa=!git add . && git add -u . && git status
alias.c=commit
alias.cm=commit -m
alias.ca=commit --amend
alias.ac=!git add . && git commit
alias.acm=!git add . && git commit -m
alias.l=log --graph --all --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'
alias.ll=log --stat --abbrev-commit
alias.lg=log --color --graph --pretty=format:'%C(bold white)%h%Creset -%C(bold green)%d%Creset %s %C(bold green)(%cr)%Creset %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
alias.llg=log --color --graph --pretty=format:'%C(bold white)%H %d%Creset%n%s%n%+b%C(bold blue)%an <%ae>%Creset %C(bold green)%cr (%ci)' --abbrev-commit
alias.d=diff
alias.master=checkout master
alias.spull=svn rebase
alias.spush=svn dcommit
alias.alias=!git config --list | grep 'alias\.' | sed 's/alias\.\([^=]*\)=\(.*\)/\1\ => \2/' | sort
include.path=~/.gitcinclude
include.path=.githubconfig
include.path=.gitcredential
diff.exif.textconv=exif
credential.helper=osxkeychain
user.name=
user.email=
等待,你可以做'git config --list'?然後它已經安裝好了,試一試'git --version' – BladeMight
_「我的Mac中沒有找到作爲文件的位置,儘管它顯示在終端上。」_--你到底想要看到什麼作爲一個文件? – 1615903
@BladeMight的版本是2.10.1,但我無法在我的Mac上找到它作爲軟件或文件 –