Skip to content

Instantly share code, notes, and snippets.

@murphyslaw
Created June 26, 2025 14:51
Show Gist options
  • Select an option

  • Save murphyslaw/b3c8c6bdf63f458ea6914bacf85ec085 to your computer and use it in GitHub Desktop.

Select an option

Save murphyslaw/b3c8c6bdf63f458ea6914bacf85ec085 to your computer and use it in GitHub Desktop.
Command to move a git tag after rebase
(export VERSION="1.2.3"; git push origin ":$VERSION"; git tag --delete "$VERSION"; git tag "$VERSION"; git push origin "$VERSION")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment