How to delete a remote branch in Mercurial? -
apparently strip works on local branch want delete remote branch.
anything equivalent these git command mercurial?
git push origin —delete [branch_name]
git branch -d [branch_name]
you cannot delete remote branch ever.
stripping , hist-editing strictly local operation. need access server , strip there (maybe that's possible via web-interface, e.g. on bitbucket).
the exception - degree - if changesets of phase draft , remote server configured non-publishing server. can obsolete changesets on remote server (but not delete them either).
Comments
Post a Comment