mirror of
https://github.com/git/git.git
synced 2024-11-18 02:14:03 +01:00
8 lines
132 B
Plaintext
8 lines
132 B
Plaintext
|
#!/bin/sh
|
||
|
repo="$1"
|
||
|
dir="$2"
|
||
|
mkdir $dir || exit 1
|
||
|
cd $dir
|
||
|
git-init-db
|
||
|
git fetch "$repo" && ( git-rev-parse FETCH_HEAD > .git/HEAD )
|