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 # one $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 /path/to/mrconfig.git-fake-bare
12 # called to tell git where the worktree is
13 git_fake_bare_worktree() {
14 GIT_WORK_TREE="$1"; export GIT_WORK_TREE
16 # git doesn't have an easy way to check out such a repo, so
18 git_fake_bare_checkout() {
22 GIT_WORK_TREE= git clone --no-checkout "$url" "$repo"
24 mkdir -p "$GIT_WORK_TREE"
26 git config core.worktree "$GIT_WORK_TREE"
27 git checkout-index -a --prefix="$worktree" || true
33 test -d "$MR_REPO"/refs/heads && test -d "$MR_REPO"/refs/tags &&
34 test -d "$MR_REPO"/objects && test -f "$MR_REPO"/config &&
35 test "$(GIT_CONFIG="$MR_REPO"/config git-config --get core.bare)" = false
37 git_fake_bare_update =
38 # all this is because of a bug in git-fetch, which requires GIT_DIR set
39 local git_dir_override; git_dir_override=.git
40 case "$(get_git_repo_type "$MR_REPO")" in
41 fake-bare) git_dir_override="$MR_REPO";;
44 [ -z "$args" ] && args="-t origin master"
45 eval GIT_DIR="$git_dir_override" git pull "$args"
47 git_fake_bare_status = git status "$@" || true
49 git_fake_bare_commit = error "commit does not work for fake bare git repositories (yet)."
51 git_fake_bare_diff = error "diff does not work for fake bare git repositories (yet)."
53 git_fake_bare_log = git log "$@"
55 git_fake_bare_register =
56 url="$(LANG=C GIT_CONFIG=config git-config --get remote.origin.url)" || true
57 if [ -z "$url" ]; then
58 error "cannot determine git url"
60 worktree="$(git-config --get core.worktree)" || true
61 if [ -z "$worktree" ]; then
62 error "git worktree is not set"
64 worktree="${worktree%%/}/"
65 if [ ! -d "$worktree" ]; then
66 error "git worktree $worktree does not exist"
68 mr -c "$MR_CONFIG" config "`pwd`" lib="git_fake_bare_worktree '$worktree'"
69 echo "Registering git url: $url in $MR_CONFIG (with worktree $worktree)"
70 mr -c "$MR_CONFIG" config "`pwd`" checkout="git_fake_bare_checkout '$url' '$MR_REPO'"