Last active
December 1, 2025 14:06
-
-
Save wadoon/5f1a18378d9820f9544b141c229f3bea to your computer and use it in GitHub Desktop.
Retrieve the git repositories from your Overleaf project page for mass backup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Execute the following line in your Javascript console on your Overleaf project page. | |
| After you have unfold all of your projects. | |
| */ | |
| document.querySelectorAll(".dash-cell-name a").forEach((a) => console.log("git clone https://[email protected]/"+a.href.substr(33) +" '"+ a.text+"'")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment