X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/8785f32e84c060b4d9a4264dd46995ae7e39e943..c43f9d1f483b45907f24e6befc68016d3ed9ac93:/lib/git-fake-bare?ds=sidebyside diff --git a/lib/git-fake-bare b/lib/git-fake-bare index eeff551..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 @@ -39,7 +41,7 @@ lib = if [ ! -d "$worktree" ]; then error "git worktree $worktree does not exist" fi - echo "$worktree" + echo "$worktree" } git_fake_bare_test =