私にはいくつかの仕事をした開発者がいて、彼は私にプルリクエストを提出しました。このブランチのコピーを複製する方法はありますか?git pullを実行できることはわかっていますが、何か問題が発生した場合に備えて、すばやくビルドするために、彼の結果からクローンを作成したいと思います(これが可能な場合)。私がこれを完全に間違っていると思っているなら、私に知らせてください。
ブランチのURLは次のようになります。
https://github.com/my-name/project-name/tree/his-branch
しかし、私がそうするなら
git clone https://github.com/my-name/project-name/tree/his-branch
私は得る
Cloning into his-branch...
fatal:
https://github.com/my-name/project-name/tree/his-branch/info/refs not found: did you run git update-server-info on the server?
なぜ私は取得しているのですか、そして彼が行った変更のコピーをどのように取得するのですか?
事前にthx
編集#1
私はこれを試しましたが、このエラーが発生しました:
Wed Dec 05$ git clone --branch his-branch https://github.com/my-name/project-name.git
fatal: destination path 'project-name' already exists and is not an empty directory.
Wed Dec 05$