add
This commit is contained in:
parent
f4b96ee44e
commit
a2be4265bf
1 changed files with 15 additions and 0 deletions
15
doc/bugs/GIT_DIR_support_incomplete.mdwn
Normal file
15
doc/bugs/GIT_DIR_support_incomplete.mdwn
Normal file
|
@ -0,0 +1,15 @@
|
|||
`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]]
|
Loading…
Reference in a new issue