X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/1a2c28ad8b1aa4904916eff977756c6aaaa3b632..5005b07da4ab98791af3b27d66ea18917d5dc901:/lib/git-fake-bare?ds=inline diff --git a/lib/git-fake-bare b/lib/git-fake-bare index 33bd39e..0c33934 100644 --- a/lib/git-fake-bare +++ b/lib/git-fake-bare @@ -1,7 +1,7 @@ # An example of how to add a new revision control system type to mr. # git fake bare repositories have a detached workspace. One potential # application is storing dotfiles in git, keeping them checked out in -# one $HOME, but checked into different git repositories. This file adds +# ones $HOME, but checked into different git repositories. This file adds # support for them, separate from the normal git support. # To make mr use this file, add a line like this inside the [DEFAULT] @@ -32,7 +32,7 @@ lib = git_fake_bare_test = test -d "$MR_REPO"/refs/heads && test -d "$MR_REPO"/refs/tags && test -d "$MR_REPO"/objects && test -f "$MR_REPO"/config && - test "$(GIT_CONFIG="$MR_REPO"/config git-config --get core.bare)" = false + test "$(GIT_CONFIG="$MR_REPO"/config git config --get core.bare)" = false git_fake_bare_update = args="$@" @@ -43,16 +43,18 @@ git_fake_bare_status = git status "$@" || true git_fake_bare_commit = error "commit does not work for fake bare git repositories (yet)." +git_fake_bare_record = error "record does not work for fake bare git repositories (yet)." + git_fake_bare_diff = error "diff does not work for fake bare git repositories (yet)." git_fake_bare_log = git log "$@" git_fake_bare_register = - url="$(LC_ALL=C GIT_CONFIG=config git-config --get remote.origin.url)" || true + url="$(LC_ALL=C GIT_CONFIG=config git config --get remote.origin.url)" || true if [ -z "$url" ]; then error "cannot determine git url" fi - worktree="$(git-config --get core.worktree)" || true + worktree="$(git config --get core.worktree)" || true if [ -z "$worktree" ]; then error "git worktree is not set" fi