git push production +62d3d3b^:master
Where 62d3d3b
is the child of the commit we want to point to. So doing child^
effectively points back to the parent. I guess, if we had the parent sha, and used that without the ^
it would work as well.
git push production +62d3d3b^:master
Where 62d3d3b
is the child of the commit we want to point to. So doing child^
effectively points back to the parent. I guess, if we had the parent sha, and used that without the ^
it would work as well.