Articles tagged “lighthouse”
Pushing git commit messages to lighthouse in a batch
If you use github-provided lighthouse integration, from the “Admin” pages of your git repository, you may have stumbled upon on a glitch: every changeset on lighthouse appears as done by the lighthouse user that configured the integration on github.
This happens because lighthouse uses the API token to link changeset authors to LH users, and that’s not good when you’re not alone committing :-).
A simple solution is to use a post-commit hook, as described here, but that’s not satisfactory because it means that every time you issue git commit on your console, the commit message will go public, and if you --amend
or reset --soft
the index you’ll have to browse to lighthouse and delete the changeset.
A much smarter solution is to push all changed revs when pushing them to github: I modified the original post-commit hook and installed it alongside the git
command in $(dirname `which git`)/<b>git-lh</b>
.