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 リポジトリのオフライン コピーを持っていますが、しばらくすると他の誰かが変更を加えた可能性があります。新しい変更に合わせてリポジトリを最新の状態にするにはどうすればよいですか? リポジトリが最新の更新であることを確認するにはどうすればよいですか?
git pull最新の変更をプルします。
git pull
git fetch変更リストを更新します。 git statusリポジトリのステータスを確認します。最初に取得しないと、リモートの変更は表示されません。
git fetch
git status
また、ドキュメントをお読みください。