Creative Code Management

#107 · ✸ 61 · 💬 18 · 2 years ago · www.bit-101.com · ingve · 📷
A git tag is a permanent, unchanging reference to a specific point in time of your code base. Tag your code at a certain point and you can always get back to that exact point. It's never going to change unless you delete the tag and create a new tag with the same name. Git tag <some name> to create the tag to that exact commit. Git commit -m $1 git tag $1 git push git push -tags. Obviously, you want to name your tags something a bit more memorable. It will push the current code that is in this tag to the main repo.
Creative Code Management



Send Feedback | WebAssembly Version (beta)