Hi, More encouraging is that I've did a MD5 check on every single file in the Flex SDK SVN repo vs the Flex SDK Git repo (develop branches) and there's no differences (other than TLF).
Combination of commands: find <svn repo path> -exec md5 "{}" \; > MD5svn.txt find <git repo path> -exec md5 "{}" \; > MD5git.txt cat MD5svn.txt | grep -v ".*\.svn.*" > MD5modsvn.txt cat MD5git.txt | grep -v ".*\.git.*" > MD5modgit.txt diff MD5modsvn.txt MD5modgit.txt Justin