Browse Source

improve force push detect when push (#2798)

for-closed-social
Lunny Xiao 6 years ago
committed by Lauris BH
parent
commit
9ddbbd9d5a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmd/hook.go

+ 1
- 1
cmd/hook.go View File

@ -118,7 +118,7 @@ func runHookPreReceive(c *cli.Context) error {
if protectBranch != nil && protectBranch.IsProtected() {
// detect force push
if git.EmptySHA != oldCommitID {
output, err := git.NewCommand("rev-list", oldCommitID, "^"+newCommitID).RunInDir(repoPath)
output, err := git.NewCommand("rev-list", "--max-count=1", oldCommitID, "^"+newCommitID).RunInDir(repoPath)
if err != nil {
fail("Internal error", "Fail to detect force push: %v", err)
} else if len(output) > 0 {

Loading…
Cancel
Save