Eclipse で github : Pullできない- Windows

ここまで設定が終わったあと、Pullできなかった。
http://d.hatena.ne.jp/mzi/20130101/1356990711

Pullしようとしてみると、なんと、Pullがアクティブになっていない。
これじゃあ、Pullできない。

原因は、設定が終わっていないこと。

  • Window > Open Perspective > Git Repository Exploring
  • プロジェクト右クリック > Properties > Configuration > Location > open

以下を追加

[remote "origin"]
url = ssh://git@github.com/ユーザ名/プロジェクト名.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master

これでPullできるようになる。
うーん、もっと簡単にできるようになるといいのに。