Hello! >> >> git push origin +local_branch:remote_branch >> HM> Tell me more about that '+'. I've never heard of it before. Can't see HM> anything in the docs (although I'm probably not looking in the right HM> place) git help push <refspec>… The format of a <refspec> parameter is an optional plus +, followed by the source ref <src>, followed by a colon :, followed by the destination ref <dst>. It is used to specify with what <src> object the <dst> ref in the remote repository is to be updated. ... By having the optional leading +, you can tell git to update the <dst> ref even when the update is not a fast forward. This does not attempt to merge <src> into <dst>. See EXAMPLES below for details. ---=====--- Alexander -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html