1
0
mirror of https://github.com/git/git.git synced 2024-11-17 20:54:01 +01:00
git/git-clone-script
2005-07-05 15:47:34 -07:00

5 lines
96 B
Bash
Executable File

#!/bin/sh
repo="$1"
dir="$2"
mkdir "$dir" && cd "$dir" && git-init-db && git-clone-pack "$repo"