Skip to content

Instantly share code, notes, and snippets.

@rambattu
Created February 28, 2020 03:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rambattu/dba3b790f061ce576cbb3c8a218032a8 to your computer and use it in GitHub Desktop.
Save rambattu/dba3b790f061ce576cbb3c8a218032a8 to your computer and use it in GitHub Desktop.
Shell script to convert git diff into svn patch

Slight modification of the gist here https://gist.github.com/katta/1028871, that script works with the diff that got generated from git using --no-prefix, this script git-diff-to-svn-patch.sh can be used to work on diff that is generated without "--no-prefix" option as well

#!/bin/sh
# Given a diff file generated in a git repo, this script converts it
# to SVN patch file.
if [[ $# -ne 1 ]] ; then
me=`basename "$0"`
echo "Usage: $me git-files.diff"
exit 1
fi
filename=`basename -s .diff $1`
out_filename=${filename}-svn.patch
echo "Writing SVN patch output to $out_filename"
cat $1 | sed -e "s/^diff --git [^[:space:]]*/Index:/" -e "s/^index.*/===================================================================/" -e "s/^Index: b\//Index: /" -e "s/^--- a\//--- /" -e "s/^+++ b\//+++ /" > $out_filename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment