Versions Compared

Key

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

...

  1. Create a git repo as normal

  2. Make changes to the code base

  3. git add .

  4. git commit -m <message>

  5. git tag -a <tag id> -m <message relating to the tag>

  6. git push origin <tag id>master

  7. git push origin master<tag id>

Lines 6 and 7 can be swapped.

...