X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/416a5c247bfb6da5cfb57ad9249e637c1f709aa6..eb0532270369618a99e2495c41dab98315f73d11:/mr diff --git a/mr b/mr index c0f3e83..1b73639 100755 --- a/mr +++ b/mr @@ -936,6 +936,12 @@ lib = echo "mr: $@" >&2 exit 1 } + warning() { + echo "mr (warning): $@" >&2 + } + info() { + echo "mr: $@" >&2 + } hours_since() { if [ -z "$1" ] || [ -z "$2" ]; then error "mr: usage: hours_since action num" @@ -1077,7 +1083,7 @@ register = if [ -n "$1" ]; then cd "$1" fi - basedir="$(basename $PWD)" + basedir="${PWD##*/}" case "$(get_repo_type .)" in svn) url=$(LANG=C svn info . | grep -i ^URL: | cut -d ' ' -f 2) @@ -1094,26 +1100,35 @@ register = non-bare) config=.git/config;; bare|fake-bare) config=config;; esac - url="$(LANG=C GIT_CONFIG="$config" git-config --get remote.origin.url)" + url="$(LANG=C GIT_CONFIG="$config" git-config --get remote.origin.url)" || : if [ -z "$url" ]; then error "cannot determine git url" fi + set -x + local clone_opts add_cmd work_tree suffix case "$repo_type" in - bare|fake-bare) - # this seems like a bare repo as it has no - # worktree. - local work_tree + fake-bare) + # this seems like a fake bare repo and needs a worktree work_tree="$(git-config --get core.worktree)" || : + work_tree="${work_tree%%/}/" if [ ! -d "$work_tree" ]; then - error "git worktree $work_tree does not exist" + error "git worktree '$work_tree' does not exist" fi + clone_opts=" --no-checkout" + add_cmd="$add_cmd && cd $basedir" + add_cmd="$add_cmd && git read-tree HEAD" + add_cmd="$add_cmd && git checkout-index -a --prefix='$work_tree' || :" + add_cmd="$add_cmd; git config core.worktree '$work_tree'" + add_cmd="$add_cmd && mv .git/* . && rmdir .git" suffix=" (with worktree $work_tree)" - mr -c "$MR_CONFIG" config "$PWD" \ - lib="GIT_WORK_TREE=$work_tree; export GIT_WORK_TREE" + ;; + bare) + clone_opts=" --bare" + suffix=" (bare repository)" ;; esac echo "Registering git url: $url in $MR_CONFIG${suffix:-}" - mr -c "$MR_CONFIG" config "$PWD" checkout="git clone $url $basedir" + mr -c "$MR_CONFIG" config "$PWD" checkout="git clone${clone_opts:-} $url $basedir${add_cmd:-}" ;; bzr) url=$(cat .bzr/branch/parent)