Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プロジェクトのフォークに取り組んでいて、プルリクエストを送信します。しかし、私がフォークしたリポジトリは、まだプッシュが保留されているときに更新されます。プルリクエストからの変更を失うことなく最新の状態に保つにはどうすればよいですか?
プルリクエストからのコミットは別のブランチにある必要があります。
したがって、単純git pull upstreamにgit merge --ff-only upstream/master(最初にマスターブランチにいることを確認してgit checkout masterください:)マスターブランチを最新の状態にすることができます(元のリポジトリがと呼ばれるリモートにあると仮定しますupstream)
git pull upstream
git merge --ff-only upstream/master
git checkout master
upstream