2009/2/3 Hinko Kocevar <hinko.kocevar@xxxxxxxxxxxx>: > Hi, > > Is there a way to 'revert' committed and pushed tag? > I've noticed that some files were not included in the commit (new files) > and I would like to squeeze them in before the tag was > created/committed/pushed to the remote server. You do it the same way you delete a branch (see git-push(1)): git push origin :refs/tags/rc3 Note that anybody that has fetched from your public repository will _not_ have their current 'rc3' tag overwritten with the new version without them deleting it first and letting fetch recreate it. Matt -- 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