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