Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 352 Bytes

TESTING.md

File metadata and controls

16 lines (12 loc) · 352 Bytes

Testing Notes

Collection of useful commands for testing with Git.

Deleting a tag on the remote:

git tag -d 0.3.0 && git push origin :refs/tags/0.3.0

Rewinding remote repository to a specific commit:

Note: This operation rewrites the remote history; use with extreme care.

git reset --hard 1b5108 && git push --force