On 2018-06-12 12:56, Brandon Long wrote: > And the updated patch. I don't know how to make git give me a single patch > of the entire change, so this is my three local commits appended together, > ie with git format-patch origin --stdout
"git format-patch -1 HEAD" will give you one commit in a single patch, and "git format-patch -2 HEAD" will give you two commits in a single patch, and "git format-patch -3 HEAD" will give you three commits ... HTH, Yubin