git latest code version code example
Example 1: how to return to latest version on git
// we need to type both of them git fetch origin git reset --hard origin/master
Example 2: how to add code version in git
git tag -a "v1.5.0-beta" -m "version v1.5.0-beta"