From: martin f. krafft Date: Sun, 18 May 2008 12:53:22 +0000 (+0100) Subject: make sure we move repo into place first before using it X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/c43f9d1f483b45907f24e6befc68016d3ed9ac93 make sure we move repo into place first before using it Signed-off-by: martin f. krafft --- diff --git a/lib/git-fake-bare b/lib/git-fake-bare index dffd508..6c8bddd 100644 --- a/lib/git-fake-bare +++ b/lib/git-fake-bare @@ -16,6 +16,7 @@ lib = # git doesn't have an easy way to check out such a repo, so # do it by hand git_fake_bare_checkout() { + set -x local url; url="$1" local repo; repo="$2" local worktree; worktree="$3" @@ -23,11 +24,12 @@ lib = cd "$repo" mkdir -p "$worktree" PWD="`pwd`" + mv .git/* . + rmdir .git GIT_DIR="$PWD" git read-tree HEAD GIT_DIR="$PWD" git checkout-index -a --prefix="$worktree" || true GIT_DIR="$PWD" git config core.worktree "$worktree" - mv .git/* . - rmdir .git + set +x } git_get_worktree() { local worktree