Lucas
Lucas

Reputation: 3119

Git format-patch output in a single file

How to direct the output of the command format-patch to a single file?

Upvotes: 8

Views: 4237

Answers (2)

Tachi
Tachi

Reputation: 618

You can also use git format-patch <branch> --output single.patch

Upvotes: -1

Jimmy2Times
Jimmy2Times

Reputation: 683

--stdout > filename

Upvotes: 13

Related Questions