josa42 / atom-blame

Show git blame as a gutter in Atom editor
https://atom.io/packages/blame
MIT License
22 stars 18 forks source link

blame package

Build Status Plugin installs! Package version! Dependencies! Project: Not maintained

Show blame annotations.


Note: the repository is not maintained. If you would like to take over, please open an issue!


Supported vcs:

Customize Gutter colors

You can customize the gutter colors by adding the following lines to your stylesheet (~/.atom/styles.less).

atom-text-editor .blame-gutter {
  .hash   { color: white; }
  .date   { color: white; }
  .author { color: white; }
}

Custom repository browser

To use a custom repository browser (like gitweb), set an URL template in the git config file:

git config --local --add atom-blame.browser-url "http://example.com/gitweb/?p=my_repo.git;a=commit;h={hash}"

{hash} will be replaced with the actual short-format hash of selected commit. {long-hash} will be replaced with the long-format hash of selected commit.

Todo: