Child pages
  • Tagging for deploy

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
git checkout fb1              # Ensure we are on the correct branch
git pull origin fb1           # Ensure we have all the latest commits from GitHub
git tag -a "mar-21-2018"      # Tag this version with the current date


# Enter a brief description of what is being added in this release

git push origin "mar-21-2018" # Push this tag to GitHub

...