https://bugzilla.wikimedia.org/show_bug.cgi?id=19671

           Summary: Try using git-svn for CodeReview on MediaWiki.org to
                    make viewing diffs faster
           Product: MediaWiki extensions
           Version: any
          Platform: All
               URL: http://johan.kiviniemi.name/blag/svn-diff-git-diff-
                    speed/
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: Normal
         Component: CodeReview
        AssignedTo: jschulz_4...@msn.com
        ReportedBy: ava...@gmail.com


Every time I look at a revision diff on mediawiki.org there's a little spinning
globe reminding me that something is fetching that diff over the network.

If you cloned the MediaWiki repository with git-svn and did git svn rebase on
every commit you could do must faster diffs, e.g.:

$ time svn diff -r 53124:53125 > /dev/null

real    0m7.538s
user    0m0.020s
sys     0m0.012s

$ git diff $(git svn find-rev r53124)  $(git svn find-rev r53125) > /dev/null

real    0m0.814s
user    0m0.436s
sys     0m0.368s


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to