You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Christophe Prud'homme <pr...@debian.org> on 2003/04/30 17:28:18 UTC

Merge conflict during commit

Hi,

I've got this message in two different dirs in my svn tree

svn ci -m"my message here"
Sending        .
svn: Merge conflict during commit
svn: Commit failed (details follow):
svn: Your file '' is probably out-of-date.
svn:
The version resource does not correspond to the resource within the transaction.  
Either the requested version resource is out of date (needs to be updated), or the requested
 version resource is newer than the transaction root (restart the commit).

If I run commit individual files, no problem.
If I use . for those two dirs where I have the message it fails. Note that svn fails to give
me the name of the file. Where should I look for this problem?

This problem started to appear after I created svn:ignore property for these dirs.

Best regards
C.
-- 
| Christophe Prud'homme, http://augustine.mit.edu/~prudhomm
| ICQ UIN: 24560867 Alias: Jesunix
| Key fingerprint = 3703 50DE 7A9F 024E 0F26  0D07 A18F B40B D4BE 1450
|
| If it doesn't work, force it. If it breaks, it needed replacing anyway.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: Merge conflict during commit

Posted by Ben Collins-Sussman <su...@collab.net>.
"Christophe Prud'homme" <pr...@debian.org> writes:

> This problem started to appear after I created svn:ignore property
> for these dirs.

You changed a property on ".", then tried to commit.  So you're
effectively trying to commit a new version of the current working
directory. 

But you can't commit propchanges to directories unless they're
up-to-date.  Run 'svn up' first -- then 'svn commit .' will work fine.


P.S.  Read the last paragraph on this page:

  http://svnbook.red-bean.com/html-chunk/ch02s03.html#svn-ch-2-sect-3.4




---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org