Junio C Hamano <[email protected]> writes:
> 2. If you want to only correct what is shown at origin to the other
> people, then you do not have to update your local repository.
>
> $ git push origin version_1.0 v1.0
> $ git push origin version_1.1 v1.1
Colons are missing from this one.
git push $there $we_call_it_so:$they_call_it_so
i.e.
git push origin version_1.0:v1.0
...
> 3. If these old ones are meant to be immutable, then storing them as
> tags instead of leaving them as branches might make more sense,
> i.e.
>
> $ git push origin version_1.0 tags/v1.0
> $ git push origin version_1.1 tags/v1.1
Likewise.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html