On Mon, Mar 16, 2009 at 3:00 PM, John Dlugosz [off-list ref] wrote:
=== Re: ===
quoted
So, after inspecting the changes, how do you fast-forward your local
dev
quoted
to sync up with origin/dev?
$ git push . origin/dev dev
=== end ===
That did not work. It just reports "everything up to date". If I
understand the point of what it does correctly, I think
$ git push . +origin/dev:dev
is correct.
You very likely do not want the '+' at the start:
$ git push . origin/dev:dev
j.