All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 # An example of how to add a new revision control system type to mr.
2 # git fake bare repositories have a detached workspace. One potential
3 # application is storing dotfiles in git, keeping them checked out in
4 # ones $HOME, but checked into different git repositories. This file adds
5 # support for them, separate from the normal git support.
7 # To make mr use this file, add a line like this inside the [DEFAULT]
8 # section of your ~/.mrconfig
9 #include = cat /usr/share/mr/git-fake-bare
11 # And an example repo using it would look something like:
13 #checkout = git_fake_bare_checkout git://... .dotfiles <worktree, eg. ..>
16 # git doesn't have an easy way to check out such a repo, so
18 git_fake_bare_checkout() {
22 git clone --no-checkout "$url" "$repo"
26 git checkout-index -a --prefix="$worktree" || true
27 git config core.worktree "$worktree"
33 worktree="$(git config --get core.worktree)" || true
34 if [ -z "$worktree" ]; then
35 error "git worktree is not set"
37 worktree="${worktree%%/}/"
38 if [ ! -d "$worktree" ]; then
39 error "git worktree $worktree does not exist"
45 test -d "$MR_REPO"/refs/heads && test -d "$MR_REPO"/refs/tags &&
46 test -d "$MR_REPO"/objects && test -f "$MR_REPO"/config &&
47 test "$(GIT_CONFIG="$MR_REPO"/config git config --get core.bare)" = false
49 git_fake_bare_update =
51 [ -z "$args" ] && args="-t origin master"
52 eval GIT_DIR="$MR_REPO" git pull "$args"
54 git_fake_bare_status = git status "$@" || true
56 git_fake_bare_commit = error "commit does not work for fake bare git repositories (yet)."
58 git_fake_bare_record = error "record does not work for fake bare git repositories (yet)."
61 cd "$(git_get_worktree)"
62 eval GIT_DIR="$MR_REPO" git diff "$@"
64 git_fake_bare_log = git log "$@"
66 git_fake_bare_register =
67 url="$(LC_ALL=C GIT_CONFIG=config git config --get remote.origin.url)" || true
68 if [ -z "$url" ]; then
69 error "cannot determine git url"
71 worktree="$(git_get_worktree)"
72 echo "Registering git url: $url in $MR_CONFIG (with worktree $worktree)"
73 mr -c "$MR_CONFIG" config "`pwd`" \
74 checkout="git_fake_bare_checkout '$url' '$MR_REPO' '$worktree'"
76 # vim:sw=8:sts=0:ts=8:noet