Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to get diff between all files inside 2 folders that are on the web?
    primarykey
    data
    text
    <p>So I want to <a href="http://cloudobserver.googlecode.com/svn/branches/v0.4/Boost.Extension.Tutorial/libs/boost/extension/" rel="noreferrer">compare this folder</a> <code>http://cloudobserver.googlecode.com/svn/branches/v0.4/Boost.Extension.Tutorial/libs/boost/extension/</code> with <a href="http://svn.boost.org/svn/boost/sandbox/boost/extension/" rel="noreferrer">this</a> <code>http://svn.boost.org/svn/boost/sandbox/boost/extension/</code>. I want to get a diff file as a result. These folders are under svn control but I'd prefer git styled diff file (like one <a href="https://stackoverflow.com/questions/5836948/boost-extension-simple-inheritance-sample-why-we-see-no-animals-on-linux/5838527#5838527">shown here</a>) I tried <code>git diff</code> but it seems not to work that way for web folders. So how to do the same thing with one command on Linux?</p> <p><strong><em>Update:</em></strong> So we had <a href="https://stackoverflow.com/questions/5874090/linux-how-to-get-diff-between-all-files-inside-2-folders-that-are-on-the-web/5874256#5874256">a great answer</a>. But it works strangely - it seems to me it shows that all files (same files) have all theire contents replaced with very same contents (while I know for sure that there were only like 3-4 code lines changed at all)...</p> <p><strong><em>Update 2:</em></strong> To achieve what I really needed (dif file with only really changed lines, with git styling, on Linux) do:</p> <pre><code>$ svn export http://cloudobserver.googlecode.com/svn/branches/v0.4/Boost.Extension.Tutorial/libs/boost/extension/ repos2 --native-eol CRLF $ svn export http://svn.boost.org/svn/boost/sandbox/boost/extension/ repos --native-eol CRLF $ git diff repos repos2 &gt; fileWithReadableDiff.diff </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload