gitk: commande introuvable

Environnement: Mac OSX 10.10. Quand j'ai essayé d'utiliser gitkil montre:

Coda-2:~ Coda$ gitk
-bash: gitk: command not found

Je pense que la raison est l'ancienne version de git. Voici quelques informations, et j'ai déjà tapé brew update.

Coda-2:~ Coda$ git --version
git version 1.9.3 (Apple Git-50)
Coda-2:~ Coda$ brew install git 
Warning: git-2.4.0 already installed, it's just not linked

Qu'est-ce que ce message: it's just not linked?

En outre, je vérifie le chemin de git:

Coda-2:~ Coda$ which git
/usr/bin/git

Il devrait être dans /usr/bin/local/git? Comment résoudre ce problème?

Mise à JOUR

Je l'ai trouver, merci @TimCastelijns.

brew doctor dit:

Warning: You have unlinked kegs in your Cellar
Leaving kegs unlinked can lead to build-trouble and cause brews that depend on
those kegs to fail to run properly once built. Run `brew link` on these:

    git

Donc, j'ai tapé:

Coda-2:~ Coda$ brew link git
Linking /usr/local/Cellar/git/2.4.0... 220 symlinks created

Ensuite j'ai tapé gitket cela a fonctionné, et le chemin changé à /usr/local/bin/git. Cependant, lorsque je veux vérifier la version de git. Il montrait toujours l'ancienne version, pourquoi?

Coda-2:~ Coda$ git --version
git version 1.9.3 (Apple Git-50)

source d'informationauteur Coda Chang