2017-04-21 198 views
0

當我從他們的官方網站下載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= 
+0

等待,你可以做'git config --list'?然後它已經安裝好了,試一試'git --version' – BladeMight

+0

_「我的Mac中沒有找到作爲文件的位置,儘管它顯示在終端上。」_--你到底想要看到什麼作爲一個文件? – 1615903

+0

@BladeMight的版本是2.10.1,但我無法在我的Mac上找到它作爲軟件或文件 –

回答

1

混帳作爲MacOS的一部分,所以你不需要'安裝'git,只需打開終端並鍵入'git',就會出現一個提示窗口,要求你爲終端安裝git工具。

+0

我也嘗試過,但仍然無法將其視爲我的Mac中的軟件或文件,或者按官方網站的指示安裝 –