mirror of
https://github.com/git-for-windows/git.git
synced 2026-02-04 03:33:01 -06:00
5 lines
96 B
Bash
Executable File
5 lines
96 B
Bash
Executable File
#!/bin/sh
|
|
repo="$1"
|
|
dir="$2"
|
|
mkdir "$dir" && cd "$dir" && git-init-db && git-clone-pack "$repo"
|