In git, I stash away my changes. Is it possible that I can create a patch with what I stash away? And then apply that patch in some other repository (my co-worker's)?
I know git format-patch -1
, but I think that it's for what I have committed. But I am looking for the same thing for changes that I stashed away.
And how can I apply a patch in other repository?