Skip to content

Instantly share code, notes, and snippets.

@ijt
Created December 23, 2010 18:35
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 ijt/753366 to your computer and use it in GitHub Desktop.
Save ijt/753366 to your computer and use it in GitHub Desktop.
Shows differences between your local git-svn repo and the central svn repo
#!/usr/bin/python
# This file is originally from http://code.google.com/p/git-svn-utils/source/checkout. It
# contains some small changes by ijt to get it working on OS X.
import sys,re,os, subprocess
def get_output(cmd):
'''a little wrapper around subprocess.Popen'''
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
p.wait()
if p.returncode != 0:
raise 'subprocess returned: %d' % p.returncode
return p.stdout
if len(sys.argv) > 2:
print '%s [<tree-ish>]' % sys.argv[0]
sys.exit(1)
if len(sys.argv) == 2:
# the user supplied a tree-ish reference
treeish = sys.argv[1]
else:
# or we use the last svn merge point
treeish = 'remotes/git-svn'
# find the svn rev of that treeish
svn_rev = get_output(['git', 'svn', 'find-rev', treeish]).read().strip()
if not len(svn_rev):
print "I can't work out what SVN rev is associated with: %s" % treeish
sys.exit(1)
# generate a diff and then fix it up to look like a svn diff
difflines = get_output(['git', 'diff', '-r', treeish]).readlines()
for line in difflines:
# match the first line
m = re.match('^diff --git a/(?P<path>.*) b/(?P=path)\s*$', line)
if m:
sys.stdout.write('Index: %(path)s\n' % m.groupdict())
continue
# match the second line
m = re.match('^index ', line)
if m:
sys.stdout.write(63*'=')
sys.stdout.write('\n')
continue
# match the third line
m = re.match('^--- a/(?P<path>.*)\s*$', line)
if m:
sys.stdout.write('--- %s\t(revision %s)\n' %
(m.groupdict()['path'], svn_rev))
continue
# match the fourth line
m = re.match(r'^\+\+\+ b/(?P<path>.*)\s*$', line)
if m:
sys.stdout.write('+++ %s\t(working copy)\n' % m.groupdict()['path'])
continue
# pass everything else through
sys.stdout.write(line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment