Rename default branch to ‘main’

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2021-08-24 12:50:52 -07:00
parent 285a946a1f
commit 53e59c8c09
13 changed files with 39 additions and 39 deletions

View file

@ -4,7 +4,7 @@
# Edited at Line 14 Col 97 (zulip -> python-zulip-api)
# Please don't edit here; instead update the zulip/zulip copy and then resync this file.
# Lint all commit messages that are newer than upstream/master if running
# Lint all commit messages that are newer than upstream/main if running
# locally or the commits in the push or PR Gh-Actions.
# The rules can be found in /.gitlint
@ -16,9 +16,9 @@ $(git remote -v)
" =~ '
'([^[:space:]]*)[[:space:]]*(https://github\.com/|ssh://git@github\.com/|git@github\.com:)"$repository"(\.git|/)?\ \(fetch\)'
' ]]; then
range="${BASH_REMATCH[1]}/master..HEAD"
range="${BASH_REMATCH[1]}/main..HEAD"
else
range="upstream/master..HEAD"
range="upstream/main..HEAD"
fi
commits=$(git log "$range" | wc -l)