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.
すべての github リポジトリをバックアップするにはどうすればよいですか。簡単なスクリプトまたはそれを行う方法を見つけようとしています
これを試して:
$ cd <place for backups> $ for repo in <github-repo-1>, <github-repo-2>, ...; do git clone --mirror $repo done