X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/6976c4433469d551a6be890659d59ab8418f897b..177abc159286a0e1c19614a169aeae6036b5955a:/lib/git-fake-bare diff --git a/lib/git-fake-bare b/lib/git-fake-bare index 8afb84a..140d24d 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] @@ -43,12 +43,14 @@ 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="$(LANG=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