Reputation: 3119
How to direct the output of the command format-patch to a single file?
Upvotes: 8
Views: 4237
Reputation: 618
You can also use git format-patch <branch> --output single.patch
git format-patch <branch> --output single.patch
Upvotes: -1
Reputation: 683
--stdout > filename
Upvotes: 13