git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* conflict merging directory replaced by symlink
@ 2010-10-29 17:32 Mischa POSLAWSKY
  0 siblings, 0 replies; only message in thread
From: Mischa POSLAWSKY @ 2010-10-29 17:32 UTC (permalink / raw)
  To: git

Hello list,

After replacing a directory by a symlink, branches without that change will
conflict whenever they change something unrelated in the link target.
To illustrate:

	git init &&
	mkdir common &&
	touch common/test &&
	git add common/test &&
	mkdir dupe &&
	touch dupe/test &&
	git add dupe/test && 
	git commit -m 'initial setup' &&

	git rm -r dupe &&
	ln -s common dupe &&
	git add dupe &&
	git commit -m 'replace dir by symlink' &&

	git checkout -b prelink HEAD^ &&
	touch common/irrelevant &&
	git add common/irrelevant &&
	git commit -m 'additional common file' &&

	git checkout - &&
	git merge prelink

fails in git v1.7.2.3 with:
> CONFLICT (file/directory): There is a directory with name dupe in prelink.
> Adding dupe as dupe~HEAD
> Automatic merge failed; fix conflicts and then commit the result.

I'd expect the same resolution as when adding a symlink from a different
name, without replacing the directory, but this happily merges without
raising a fuss.

Does anyone recognise or know a reason for this behaviour?

Thanks!
-- 
Mischa

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-10-29 17:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-29 17:32 conflict merging directory replaced by symlink Mischa POSLAWSKY

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).