...
Code Block | ||
---|---|---|
| ||
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
|
...