--- title: git.sr.ht docs --- [git.sr.ht](https://git.sr.ht) is a service for hosting git repositories on sr.ht. **See also**: - [API reference](api.md) - [Installation guide](installation.md) # New to git? Learning how to use git in general is out of the scope of our documentation. Here are some good resources: - [The official Git book](https://git-scm.com/book/en/v2) - [Git man pages](https://git-scm.com/docs) We do have some general resources for learning how to use git the sr.ht way: - [Using git-send-email for sending and reviewing patches on sr.ht](../git.sr.ht/send-email.md) - [Code review with lists.sr.ht](../lists.sr.ht/code-review.md) # SSH host keys ``` git.sr.ht ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDZ+l/lvYmaeOAPeijHL8d4794Am0MOvmXPyvHTtrqvgmvCJB8pen/qkQX2S1fgl9VkMGSNxbp7NF7HmKgs5ajTGV9mB5A5zq+161lcp5+f1qmn3Dp1MWKp/AzejWXKW+dwPBd3kkudDBA1fa3uK6g1gK5nLw3qcuv/V4emX9zv3P2ZNlq9XRvBxGY2KzaCyCXVkL48RVTTJJnYbVdRuq8/jQkDRA8lHvGvKI+jqnljmZi2aIrK9OGT2gkCtfyTw2GvNDV6aZ0bEza7nDLU/I+xmByAOO79R1Uk4EYCvSc1WXDZqhiuO2sZRmVxa0pQSBDn1DB3rpvqPYW+UvKB3SOz git.sr.ht ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCj6y+cJlqK3BHZRLZuM+KP2zGPrh4H66DacfliU1E2DHAd1GGwF4g1jwu3L8gOZUTIvUptqWTkmglpYhFp4Iy4= git.sr.ht ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMZvRd4EtM7R+IHVMWmDkVU3VLQTSwQDSAvW0t2Tkj60 ``` # git.sr.ht manual The following sections document various features of git.sr.ht. ## Attaching files to releases git.sr.ht allows you to attach files, such as executables (aka binaries), PGP signatures, and so on, to *annotated tags*. To create an annotated tag, run the following git command: ``` git tag -a ``` For example, `git tag -a 2.3.4` to tag version 2.3.4. Your text editor will open, and you'll be prompted to *annotate* the tag - fill this in with release notes, a changelog, etc. Consider using [`git-shortlog`](https://git-scm.com/docs/git-shortlog) to generate your changelog. Save and close your editor, then use `git push --tags` to publish the new tag or use `git push --follow-tags` to push any local commits to the current branch, along with the new tag (this can be made the default behavior by running `git config --global push.followTags true`). The new tag will appear on the "refs" page of your repository. To attach files to it, click the tag name (e.g. "2.3.4") and use the upload form on this page. ## Source code annotations You can generate annotations for your source code to display on git.sr.ht. These may be used, for example, to implement language-aware "go to reference" or "go to usage" annotations throughout your code. For more information [see this document](annotations.md). ## Push Options git.sr.ht supports some git push options, which can be specified with `-o option` or `-o option=value`. - **debug**: prints the UUID assigned to your git push. You may be asked to provide this when troubleshooting push issues. - **skip-ci**: skips submitting builds.sr.ht jobs for this push. All of your push options, including ones not recognized by git.sr.ht itself, are forwarded to any webhooks you have configured for your repository.