28 Jan
2013
28 Jan
'13
10:41 a.m.
On 28.01.2013 09:36, Maxime Gauduin wrote:
Thank you for the tips. I had read that "git format-patch commit_id" would give me the patch I wanted, but I only managed to have all patches generated.
format-patch gives you all changes made after the commit id you specify. So if you work on a separate branch and it's based on master you can run "format-patch master" you will get all your changes. You can also use format-patch origin/master if, but I use branches.