소스 검색

Check for non-fast-forward update error on push

Brendan Abolivier 6 년 전
부모
커밋
cc1d718d23
로그인 계정: Brendan Abolivier <contact@brendanabolivier.com> GPG 키 ID: 8EF1500759F70623
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6
    0
      src/git/git.go

+ 6
- 0
src/git/git.go 파일 보기

@@ -106,5 +106,11 @@ func Push(r *gogit.Repository, cfg config.GitSettings) error {
106 106
 		return nil
107 107
 	}
108 108
 
109
+	// go-git doesn't have an error variable for "non-fast-forward update", so
110
+	// this is the only way to detect it
111
+	if strings.HasPrefix("non-fast-forward update", err.Error()) {
112
+		return nil
113
+	}
114
+
109 115
 	return err
110 116
 }