Notebooks

  • Git

    • Github tags and versioning

Step 1: Stage and commit the README                                               
- git add README.md                                                               
- git commit -m "Add README with project overview and versions table"

Step 2: Create an annotated tag
- git tag -a v1.0.0 -m "v1.0.0 — initial published version"

Step 3: Push the commit and tag
- git push origin main
- git push origin v1.0.0

Step 4: Create the GitHub Release
- gh release create v1.0.0 --title "v1.0.0" --notes "Initial published version - more about your project"