patch application svn -> git


/ Published in: Bash
Save to your folder(s)

This is how to patch changes from svn into git (should work with other vcs as well).


Copy this code and paste it in your HTML
  1. # From within the svn managed source folder
  2. $ svn diff > /home/ronen/current.diff
  3. # From within the git managed source folder
  4. $ patch -p0 -i ~/current.diff

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.