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.
数か月前にレポを作成しましclonedたが、それがフォークから行われたのか、元のリポジトリから行われたのかを知りたいです。答えを得るには、どの git サブコマンドを実行する必要がありますか?
cloned
デフォルトでは、originリモートはクローン元のリポジトリになります。
origin
リポジトリ内のリモートのリストを表示するには、 を使用しますgit remote -v。これは、どこから複製されたのかを知るには十分ですが、特定のリモート使用に関する詳細を確認するにはgit remote -v show <remote name>.
git remote -v
git remote -v show <remote name>