私は比較的短い期間からgithubを使用しており、コミットとプルの実行には常にクライアントを使用してきました。昨日はgit bashから試してみることにし、新しいリポジトリとコミットされたファイルを作成しました。
今日、私は別のコンピューターからリポジトリーに変更を加えました。変更をコミットしました。今、家に帰っgit pull
て、ローカルバージョンを更新するためにを実行しました。これを取得します。
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream develop origin/<branch>
このレポへの唯一の貢献者は私であり、ブランチはありません(ただのマスター)。私はWindowsを使用していて、git bashからプルを実行しました。
gitステータス:
$ git status
# On branch master
nothing to commit, working directory clean
gitブランチ:
$ git branch
* master
何が悪いのですか?
git pull
たときに、クローンされたリポジトリのディレクトリにcdしていない場合にも、このエラーが発生する可能性があります。
git remote -v
ですか?それは何と言いますか?