These search terms have been highlighted:[ros]
rosinstall Git default remote
rosinstall Git default remote
2018-09-02
Fixing the warning of rosinstall: WARNING [vcstools] vcstools only handles branches tracking default remote, branch 'master' tracks remote 'None'.
rosinstall の警告に対処する方法について: WARNING [vcstools] vcstools only handles branches tracking default remote, branch 'master' tracks remote 'None'.
When running rosws update of rosinstall, there may be a warning:
WARNING [vcstools] vcstools only handles branches tracking default remote, branch 'master' tracks remote 'None'.
The issue is that the local master branch does not track the github master branch as an upstream. For fixing this issue, go to the package directory, and run:
$ git branch --set-upstream-to=origin/master master
Reference:
rosinstall ツールの rosws update を実行したときに,以下の警告が出ることがある:
WARNING [vcstools] vcstools only handles branches tracking default remote, branch 'master' tracks remote 'None'.
この警告はローカルのmasterブランチがgithubのmasterブランチをトラックしていないことに起因する. この問題を解決するには,パッケージのディレクトリに移動し,以下を実行する:
$ git branch --set-upstream-to=origin/master master
参考: