私はgitにかなり慣れていません。私は主にリポジトリにチェックインしてきましたが、今は別の開発者から最新の変更を取得したいと思っています。
何かが実行されたようなコマンドを実行しようとしましたが、次のような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>
だから私はしましたgit pull my_branch_name
そしてそれはこれで戻ってきました:
fatal: 'develop' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
git checkout my_branch
でもその直前にやった。
誰かが私が間違ったことと、チェックインされた最新のファイルを簡単に取得する方法を教えてもらえますか?
ありがとう!