It might be silly, but I just can't figure it out:
I added git support to my project after it was created, closing Xcode and using the terminal:
$ git init $ git commit -a -m "Initial commit"
When I open Xcode again, it discovers that my local repository is just fine, except that I just cannot create a way to create a tag. I can create a branch, but not a tag. How do you create it from Xcode?
EDIT: I did what @ edc1591 suggested, and even created a project with git support from scratch, and I still don't understand how to create a tag. There is only a subfolder Branch and the ability to add one (branch), but nothing about the tags ...
source share