SVN: Is the command "svn propget svn:mergeinfo" supposed to print something?
I want to find out what I merged with a w开发者_开发百科hile back (I simply forgot) and I was under the impression that "svn propget svn:mergeinfo" would print such info.
I am running this on a different machine from the one that I did the merge on.
Any ideas? Thanks.
The svn:mergeinfo property should be attached automatically to as few nodes as possible, preferably to the root (i.e. trunk, branches/xy ...) node only. You can check for all existing properties by
svn propget svn:mergeinfo -R .
If you still see nothing on the other machine you might need to update first ...
A merge must not generate mergeinfos. Most of the times it does though.
Some cases where it does not save mergeinfo can be found e.g. here: http://svnbook.red-bean.com/en/1.5/svn.branchmerge.advanced.html.
精彩评论