I have project on github.com. All summer i made commits. Now i need to get all pathes.
I know that i can:
git log -p > project.path
But this variant write all pathes in one file. How can i make:
I have 3 files in github repository:
-
test.c
-
test1.c
-
test2.c
How can i get 3 files with all pathes?
-
test.diff
-
test1.diff
-
test2.diff
Thank you
You can use
git format-patchto create a sequence of patches from your commits (one patch per commit).