Because of the ease of deleting repositories, sometimes users may regret their decisions later after deleting them. While they can check the history of what they deleted, they cannot recover what has been deleted, since this project does not read the source code of the repositories.
Suggested solution
Create a bash script based on the repos they have selected e.g.
git clone ${repo_name} && cd ${repo_name} && git bundle --all
Description
Because of the ease of deleting repositories, sometimes users may regret their decisions later after deleting them. While they can check the history of what they deleted, they cannot recover what has been deleted, since this project does not read the source code of the repositories.
Suggested solution