Skip to content

Instantly share code, notes, and snippets.

@kevincobain2000
Created September 8, 2014 06:35
Show Gist options
  • Save kevincobain2000/51fbcf74b2d5c6df2010 to your computer and use it in GitHub Desktop.
Save kevincobain2000/51fbcf74b2d5c6df2010 to your computer and use it in GitHub Desktop.
git svn diff
#!/bin/sh
#
# git-svn-diff
# Generate an SVN-compatible diff against the tip of the tracking branch
TRACKING_BRANCH=`git config --get svn-remote.svn.fetch | sed -e 's/.*:refs\/remotes\///'`
REV=`git svn find-rev $(git rev-list --date-order --max-count=1 $TRACKING_BRANCH)`
git diff --no-prefix $(git rev-list --date-order --max-count=1 $TRACKING_BRANCH) $* |
sed -e "s/^+++ .*/& (working copy)/" -e "s/^--- .*/& (revision $REV)/" \
-e "s/^diff --git [^[:space:]]*/Index:/" \
-e "s/^index.*/===================================================================/"%
@kevincobain2000
Copy link
Author

Applying patch

git repo] git-svn-diff > ~/mypatch.diff
svn] patch -p0  < ~/mypatch.diff

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment