Switch to the master branch and create a new file, add some content to it and commit it.
git checkout master
vi <file-name>.txt
git add <file-name>.txt
git commit -m "Add new file"
Create a lightweight tag.
git tag v1.0 HEAD
Push the tag to the remote repository.
git push origin v1.0