Patrick Quirk <p.qu...@smt.com> writes: >> Is the sqlite3 utility readily available on Windows? If it is then run: >> sqlite3 .svn/wc.db "select * from work_queue" > > Yep, here's the output: > 79|(file-install X/MONSTER.FMX/MONSTER.FMX.csproj 1 0 1 1) > 80|(file-install X/MONSTER.FMX/Boxes/gbFMXDisplay.resx 1 0 1 1) > 81|(file-install X/MONSTER.FMX/Boxes/gbFMXDisplay.Designer.cs 1 0 1 1) > 82|(file-install X/MONSTER.FMX/Boxes/gbFMXDisplay.cs 1 0 1 1) > > These are files that were new from the repo and were the last to show up > before the assertion appeared.
So now we want to see the nodes row for each of those four paths: sqlite3 .svn/wc.db "select * from nodes where local_relpath='X/MONSTER.FMX/MONSTER.FMX.csproj'" sqlite3 .svn/wc.db "select * from nodes where local_relpath='X/MONSTER.FMX/Boxes/gbFMXDisplay.resx'" sqlite3 .svn/wc.db "select * from nodes where local_relpath='X/MONSTER.FMX/Boxes/gbFMXDisplay.Designer.cs'" sqlite3 .svn/wc.db "select * from nodes where local_relpath='X/MONSTER.FMX/Boxes/gbFMXDisplay.cs'" -- Philip