There is no tracking information for the current branch.

Git pullした時にremoteブランチに関連付けできていない場合に表示される。

確認

$ git branch -vv
* master                      b3384d7 first commit

設定 masterブランチをorigin/masterに設定する例

$ git branch --set-upstream-to=origin/master master
Branch 'master' set up to track remote branch 'master' from 'origin'.

$ git branch -vv
 master                       b3384d7 [origin/master] first commit