Skip to content

Instantly share code, notes, and snippets.

@temoto
Created August 15, 2013 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save temoto/6241166 to your computer and use it in GitHub Desktop.
Save temoto/6241166 to your computer and use it in GitHub Desktop.
Compare git and mercurial repositories
repo1=~/dev/github.com/eventlet/eventlet
repo2=~/dev/bitbucket.org/eventlet/eventlet
diff -ru <(cd $repo1; git ls-files |sort |xargs md5sum) <(cd $repo2; hg locate |sort |xargs md5sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment