mirror of https://github.com/zulip/zulip.git
13 lines
328 B
Bash
Executable File
13 lines
328 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Lints all commit messages that are newer than upstream/master.
|
|
# The rules can be found in /.gitlint
|
|
|
|
# If this script is running on TravisCI, $UPSTREAM_MASTER would be set to the
|
|
# latest HEAD in travis.yml
|
|
if [ ! $TRAVIS ]; then
|
|
UPSTREAM_MASTER=upstream/master
|
|
fi
|
|
|
|
gitlint --commits $UPSTREAM_MASTER...HEAD
|