Deno script to clone a github/gitlab repo to ~/Projects
while keeping a tree
structure close to the remote url. If the project is already present, then it'll
fetch from the remote.
WARNING this was developed on a MacOS, so no guaranty are offered to run on a different OS.
- Clone the repo to a sensible place (eg:
~/.git-mirror
) - Add the following alias to your
.gitconfig
:
[alias]
mirror = "!Deno run --allow-run --allow-read --allow-env ~/.git-mirror/git-mirror.ts"
Call git mirror [email protected]:owner/repo.git
will clone to
~/Projects/owner/repo
.
Usage: clone <repo>
Version: 0.1.6
Description:
Clone a Git repository into the ~/Projects directory.
Options:
-h, --help - Show this help.
-V, --version - Show the version number for this program.
-r, --root <rootDir> - The root directory. (Default: "/Users/<user>/Projects")
-o, --open-vs-code - Open the repository in VS Code. (Default: true)
--no-open-vs-code - Do not open the repository in VS Code.
--dry-run - Print the command that would be run.