Consistent naming of tags.

This commit is contained in:
Ricardo Magalhães 2015-09-27 17:35:43 +02:00
parent 6fa3e0c7d9
commit 0bd7dbd106
1 changed files with 1 additions and 1 deletions

View File

@ -751,7 +751,7 @@ $ git fsck --unreachable | grep tag
Make a note of the tag's hash. Then, restore the deleted tag with following, making use of git's [update-ref](http://git-scm.com/docs/git-update-ref):
```sh
git update-ref refs/tags/NAME <hash>
git update-ref refs/tags/<tag_name> <hash>
```
Your tag should now have been restored.