summaryrefslogtreecommitdiff
path: root/doc/bugs/GIT_DIR_support_incomplete.mdwn
blob: 1b9738c4f7024c5e7dd82c653357ac83c5b1f8f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
`GIT_DIR` support isn't right. Git does not look for `GIT_DIR/.git`;
git-annex does.

Also, to support this scenario, support for core.worktree needs to be added
as well:

	mkdir repo workdir
	git --work-tree=$PWD/workdir --git-dir=$PWD/repo init
	export GIT_DIR=$PWD/repo
	git status
	# ok
	git annex init "new repo"
	# fail

--[[Joey]] 

> [[fixed|done]] --[[Joey]]