1# Git
2
3Zed currently supports the following Git features:
4
5- Diff indicators in buffers and editor scrollbars
6- Inline diff toggle and reverts in the editor for unstaged changes
7- Git status in the project panel
8- Branch creating and switching
9- Git blame viewing
10
11More advanced Git features—like staging and committing changes or viewing history within Zed—will be coming in the future.
12
13## Git Integrations
14
15Zed integrates with popular Git hosting services to ensure that git commit hashes
16and references to Issues / Pull Requests / Merge Requests become clickable links.
17Zed currently support links to
18[GitHub.com](https://github.com),
19[GitLab.com](https://gitlab.com),
20[Bitbucket.org](https://bitbucket.org),
21[SourceHut.org](https://sr.ht) and
22[Codeberg.org](https://codeberg.org).
23
24Zed also has a Copy Permalink feature to create a permanent link to a code snippet on your Git hosting service.
25These links are useful for sharing a specific line or range of lines in a file at a specific commit.
26Trigger this action via the [Command Palette](/docs/#command-palette) (search for `permalink`),
27by creating a [custom key bindings](/docs/key-bindings#custom-key-bindings) to the
28`editor::CopyPermalinkToLine` or `editor::OpenPermalinkToLine` actions
29or by simply right clicking and selecting `Copy Permalink` with line(s) selected in your editor.